UNPKG

@micro-os-plus/hello-world-qemu-template

Version:

A source xPack / npm package with a template to generate semihosted Hello World projects running on QEMU

12 lines (10 loc) 160 B
'use strict'; const {Readable} = require('stream'); module.exports = input => ( new Readable({ read() { this.push(input); this.push(null); } }) );