Files
n8n-nodes-gwezz-changdunovel/node_modules/handlebars/lib/handlebars/safe-string.js
2025-10-26 23:10:15 +08: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;