textstreamjs
v0.1.0
Published
## Installation
Downloads
7
Readme
textstreamjs
Installation
yarn add textstreamjs
npm i textstreamjs
Usage
import CodeStream from 'textstreamjs';
const cs = new CodeStream();
cs.write('export function sum(a,b) {\n`, () => {
cs.write(`return a + b;\n`);
},'}\n');