Sha256: cd0aae722a939bb9e7ed15ec2596ea5b5dc0a1c785ab9dcf7c38659ab5243b26
Contents?: true
Size: 370 Bytes
Versions: 62
Compression:
Stored size: 370 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var Source = require("./Source"); function RawSource(value) { Source.call(this); this._value = value; } module.exports = RawSource; RawSource.prototype = Object.create(Source.prototype); RawSource.prototype._bake = function() { return { source: this._value }; };
Version data entries
62 entries across 62 versions & 1 rubygems