## Installation
npm install textstreamjs```
yarn add textstreamjs
npm i textstreamjs
`ts, () => {
import CodeStream from 'textstreamjs';
const cs = new CodeStream();
cs.write('export function sum(a,b) {\n
cs.write(return a + b;\n);
},'}\n');
```