Sha256: ca35651d0203f4bd4f06740e335360bc6b906b030d0830bbb2324e3238bbc2d4
Contents?: true
Size: 313 Bytes
Versions: 69
Compression:
Stored size: 313 Bytes
Contents
define( ["exports"], function(__exports__) { "use strict"; // Build out our basic SafeString type function SafeString(string) { this.string = string; } SafeString.prototype.toString = function() { return "" + this.string; }; __exports__["default"] = SafeString; });
Version data entries
69 entries across 69 versions & 2 rubygems