blob: e6426291bfce5801bbcc1a3f8057054ba12da029 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Utilities
This directory contains files that extend Javascript built-in types with handy
functions. To use these, simply import them:
```typescript
import "../util/array.ts"; // array extensions example
["foo", "bar"].anyOf(["bar", "baz"]); // -> true
```
|