File: raw-loader.js

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