stringify.loader.js 208 B

12345678
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. module.exports = function(source) {
  6. if(this.cacheable) this.cacheable();
  7. return JSON.stringify(source);
  8. };