Skip to content

Commit

Permalink
Add zero install option
Browse files Browse the repository at this point in the history
  • Loading branch information
arye-eidelman committed Dec 10, 2020
1 parent c2506d6 commit f4f1e3d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,12 @@ console.log(INFINITY === Infinity); // true
console.log(-INFINITY === -Infinity); // true
console.log(INFINITY === -Infinity); // false
```

Alternatively this can be used as a zero install package,
without adding anything to your package.json.
This option improves performance in all areas,
including but not limited to: install times, build times, bundle size, execution time.

```js
const INFINITY = 1 / 0
```

0 comments on commit f4f1e3d

Please sign in to comment.