Sha256: 214c12a416acf0d941eb8c38b5032a59794aaa680758fbf088d7d23930d0f529
Contents?: true
Size: 229 Bytes
Versions: 7
Compression:
Stored size: 229 Bytes
Contents
// 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;
Version data entries
7 entries across 7 versions & 4 rubygems