UNPKG

295 BJavaScriptView Raw
1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3 Author Tobias Koppers @sokra
4*/
5module.exports = function(content) {
6 this.cacheable && this.cacheable();
7 this.value = content;
8 return "module.exports = " + JSON.stringify(content);
9}
10module.exports.seperable = true;
\No newline at end of file