Package Exports
- io-string
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (io-string) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
I/O String
I/O String is useful for capturing and logging asynchronous spawned process output. It allows to store raw chunk and channel descriptor.
var chunk = Buffer.from('Hello')
var str = new IOString(chunk, 0);
console.log('%s', str); // => "Hello"
Installation
Via NPM:
npm i io-string
License
Licensed under MIT license.