Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80713 views
1
"use strict";
2
// Build out our basic SafeString type
3
function SafeString(string) {
4
this.string = string;
5
}
6
7
SafeString.prototype.toString = SafeString.prototype.toHTML = function() {
8
return "" + this.string;
9
};
10
11
exports["default"] = SafeString;
12