From f4f1e3dd56b50f24effab682e79f2845d14a94a6 Mon Sep 17 00:00:00 2001 From: Arye Eidelman Date: Thu, 10 Dec 2020 04:23:49 +0000 Subject: [PATCH] Add zero install option --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 9a076b0..5a38a07 100644 --- a/README.md +++ b/README.md @@ -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 +```