Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
ee9e2a2eb6d1ea6d2d3b36285de2a3efbe4e3fe8
/
.
/
internal
/
node
/
test
/
expand_variables.js
blob: 99754db7ca54e98eb3e0009a144ff092ea241369 [
file
]
const
fs
=
require
(
'fs'
);
const
args
=
process
.
argv
.
slice
(
2
);
const
outfile
=
args
.
shift
();
fs
.
writeFileSync
(
outfile
,
JSON
.
stringify
(
args
,
null
,
2
),
'utf-8'
);