10 lines
286 B
JavaScript
10 lines
286 B
JavaScript
|
/*
|
||
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
||
|
Author Tobias Koppers @sokra
|
||
|
*/
|
||
|
module.exports = function(content) {
|
||
|
this.cacheable && this.cacheable();
|
||
|
this.value = content;
|
||
|
return "module.exports = " + JSON.stringify(content);
|
||
|
}
|
||
|
module.exports.seperable = true;
|