index.js 158 B

12345
  1. module.exports = function (content) {
  2. this.cacheable && this.cacheable();
  3. this.value = content;
  4. return "module.exports = " + JSON.stringify(content);
  5. }