index.js 286 B

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