Sha256: fc72e818fe3b78e135b3adcc339db85248175fffcfe9620c429a896baae94b65
Contents?: true
Size: 548 Bytes
Versions: 4
Compression:
Stored size: 548 Bytes
Contents
(function() { var Raw; Raw = (function() { Raw.load = function(value, raw) { if ((raw != null) && value !== raw) { return new Raw(value, raw); } else { return value; } }; function Raw(value, raw) { this.value = value; this.raw = raw; } Raw.prototype.toString = function() { if (this.changed) { return this.value || ''; } else { return this.raw || this.value || ''; } }; return Raw; })(); module.exports = Raw; }).call(this);
Version data entries
4 entries across 2 versions & 1 rubygems