aboutsummaryrefslogtreecommitdiff
path: root/node_modules/json-loader/index.js
blob: a51ba3aeb37ec40080605d2c17423ad6a05bb3eb (plain)
1
2
3
4
5
6
7
8
9
10
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
module.exports = function(source) {
	this.cacheable && this.cacheable();
	var value = typeof source === "string" ? JSON.parse(source) : source;
	this.value = [value];
	return "module.exports = " + JSON.stringify(value, undefined, "\t") + ";";
}