Revision c6fa39b48217983b3a498ad906fa630356694621 authored by Seul-gi Choi(Chase) on 12 March 2019, 21:31:04 UTC, committed by Alex Lam S.L on 12 March 2019, 21:31:04 UTC
fix anchor for mangle-options
1 parent 9aae4f2
Raw File
node.js
var fs = require("fs");

new Function("MOZ_SourceMap", "exports", require("../tools/node").FILES.map(function(file) {
    if (/exports\.js$/.test(file)) file = require.resolve("./exports");
    return fs.readFileSync(file, "utf8");
}).join("\n\n"))(require("source-map"), exports);
back to top