Sign in
◑
Theme
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
a6281f73792d17271be862be6d32694a543bccda
/
.
/
internal
/
providers
/
test
/
js-write-file.js
blob: 0d48f77b2174563b8721ee5f93e72302e0874d60 [
file
]
const
writeFileSync
=
require
(
'fs'
).
writeFileSync
;
const
content
=
process
.
argv
[
2
];
const
outputPath
=
process
.
argv
[
3
];
writeFileSync
(
outputPath
,
content
,
{
encoding
:
'utf8'
});