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