Fix bug in color-scheme-convert.php that prevented some colors from being inverted.
[lw2-viewer.git] / js-foreign-lib / web-push.js
blobdabd5605f99d7861cd2a1462882994c5cf0ab76d
1 const webPush = require('web-push');
2 var inputText = "";
4 process.stdin.on('data', (chunk) => { inputText += chunk });
6 process.stdin.on('end', () => {
7         process.stdout.write(JSON.stringify(eval(inputText)));
8 });