Revision 39537497aa16562237a3da4e0a018937e220263f authored by Michael[tm] Smith on 02 January 2015, 00:11:58 UTC, committed by Michael[tm] Smith on 02 January 2015, 00:11:58 UTC
To reflect change made in https://github.com/w3c/web-platform-tests/pull/1493
1 parent 673c5f3
Raw File
id2path.js

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]);
back to top