mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
8 lines
172 B
JavaScript
Executable file
8 lines
172 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
require("fs").writeFileSync(
|
|
process.argv[2],
|
|
JSON.stringify(
|
|
JSON.parse(require("fs").readFileSync(process.argv[2], "utf8")),
|
|
),
|
|
)
|