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