mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-15 09:46:30 -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")),
|
|
),
|
|
)
|