File: raw-loader.js

package info (click to toggle)
node-loader-runner 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 496 kB
  • sloc: javascript: 1,445; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 177 bytes parent folder | download
1
2
3
4
5
6
7
8
exports.__es6Module = true;
exports.default = function (source) {
	return Buffer.from(
		source.toString("hex") + source.toString("utf-8"),
		"utf-8"
	);
};
exports.raw = true;