1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-03 05:50:42 +00:00
notes/node_modules/css-color-names/stringify.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

18 lines
384 B
JavaScript
Executable File

#!/usr/bin/env node
/**
* given a file, or data over stdin,
* split it on newlines and emit a json object kv
*/
var fs = require('fs');
var file = process.argv[2] || '/dev/stdin';
var arr = fs.readFileSync(file, 'utf-8').trim().split('\n');
var ret = {};
arr.forEach(function(line) {
var s = line.split(' ');
ret[s[0]] = s[1];
});
console.log(JSON.stringify(ret, null, 2));