frontend/.pnpm-store/v3/files/9b/4e4bf32969c8fbe90c7bcbe3c19dee10a86febc1cb7d38e34e3245388a4fdfec6bf10563acc7449cf7fb7d69bae238f21e5a9185701c464d0174aab53f51c4

11 lines
229 B
Plaintext

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