10
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2026-04-09 09:14:17 +00:00
setup-node/node_modules/handlebars/lib/handlebars/safe-string.js
eric sciple 422b9fdb15 .
2020-01-24 12:21:24 -05:00

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