UNPKG

395 BMarkdownView Raw
1# e
2
3e is a utility library, focused on Typescript and NodeJS.
4
5### Nothing mutates.
6
7Nothing in e will ever mutate/delete/change any passed arguments.
8
9### Simple.
10
11Everything in e is just a simple, regular function with 1 purpose. Some other basic constants are exported too.
12
13
14```bash
15yarn add e
16# npm install e
17```
18
19#### Usage
20
21```ts
22import { sleep, randFloat, shuffleArr } from 'e';
23```
24
25
26