DIR: /proc/self/root/usr/share/node_modules/handlebars/lib/handlebars/ |
Current File : //proc/self/root/usr/share/node_modules/handlebars/lib/handlebars/safe-string.js |
// Build out our basic SafeString type function SafeString(string) { this.string = string; } SafeString.prototype.toString = SafeString.prototype.toHTML = function() { return '' + this.string; }; export default SafeString; |