├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── dist ├── index.d.ts ├── index.js ├── index.js.map ├── index.m.js ├── index.m.js.map ├── index.modern.js ├── index.modern.js.map ├── index.umd.js └── index.umd.js.map ├── example ├── index.html └── index.ts ├── package.json ├── screenshot.gif ├── src └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | example/dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/** 3 | !package.json 4 | !yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/index.m.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.m.js -------------------------------------------------------------------------------- /dist/index.m.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.m.js.map -------------------------------------------------------------------------------- /dist/index.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.modern.js -------------------------------------------------------------------------------- /dist/index.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.modern.js.map -------------------------------------------------------------------------------- /dist/index.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.umd.js -------------------------------------------------------------------------------- /dist/index.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/dist/index.umd.js.map -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/example/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/screenshot.gif -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammccord/perge/HEAD/yarn.lock --------------------------------------------------------------------------------