UNPKG

361 BJavaScriptView Raw
1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3 Author Tobias Koppers @sokra
4*/
5module.exports = function() {
6 this.cacheable && this.cacheable();
7 var args = Array.prototype.slice.call(arguments);
8 args = args.join("");
9 this.values = [args];
10 return "module.exports = " + JSON.stringify(args);
11}
12module.exports.seperable = true;
\No newline at end of file