WIP ppl-os building tools
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
212 B

'use strict'
const yaml = require('js-yaml')
let d = []
process.stdin.on('data', data => d.push(data))
process.stdin.on('end', () => {
console.log(JSON.stringify(yaml.safeLoad(Buffer.concat(d)), null, 2))
})