1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 21:38:34 +00:00
Files
UXP/testing/web-platform/tests/tools/scripts/id2path.js
T

13 lines
235 B
JavaScript

var fs = require("fs")
, pth = require("path")
, id = process.argv[2]
;
if (!id) {
console.log("Missing ID");
process.exit(1);
}
console.log(JSON.parse(fs.readFileSync(pth.join(__dirname, "id2path.json"), "utf8"))[id]);