travel/admin/node_modules/raw-loader/index.js

10 lines
286 B
JavaScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
/*
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;