mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
7 lines
270 B
JavaScript
7 lines
270 B
JavaScript
// [[file:../../Desktop.org::*Firefox Color][Firefox Color:1]]
|
|
const JsonUrl = require('json-url');
|
|
const jsonCodec = JsonUrl('lzma');
|
|
|
|
const json = JSON.parse(process.argv[2]);
|
|
jsonCodec.compress(json).then((r) => process.stdout.write(r));
|
|
// Firefox Color:1 ends here
|