Sign in
webkit
/
WebKit
/
23f2af82553c2cee7bae08392f2e9ba6e8c9e0c0
/
.
/
LayoutTests
/
imported
/
w3c
/
web-platform-tests
/
tools
/
scripts
/
id2path.js
blob: 39b8d644bc533bd4804e9a47849d7f80c46deca1 [
file
] [
log
] [
blame
]
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
]);