wallet-core/node_modules/handlebars/lib/handlebars/safe-string.js
2017-05-03 15:35:00 +02:00

11 lines
229 B
JavaScript

// 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;