├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── documentation.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg ├── pre-commit └── pre-push ├── .lintstagedrc.js ├── .prettierignore ├── .prettierrc.js ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── commitlint.config.js ├── documentation ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ └── authors.yml ├── docs │ ├── overview.mdx │ ├── use-count-down.mdx │ ├── use-debounce-fn.mdx │ ├── use-debounce.mdx │ ├── use-first-render.mdx │ ├── use-in-view.mdx │ ├── use-intersection.mdx │ ├── use-isomorphic-layout-effect.mdx │ ├── use-local-storage.mdx │ ├── use-previous-distinct.mdx │ ├── use-previous.mdx │ ├── use-session-storage.mdx │ ├── use-throttle-fn.mdx │ ├── use-throttle.mdx │ ├── use-toggle.mdx │ ├── use-update-effect.mdx │ └── use-window-event.mdx ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── browser-window.tsx │ │ ├── param.tsx │ │ └── social-card.tsx │ ├── css │ │ └── custom.css │ ├── examples │ │ ├── use-count-down.tsx │ │ ├── use-debounce-fn-throttle-fn.tsx │ │ ├── use-debounce-throttle.tsx │ │ ├── use-first-render.tsx │ │ ├── use-in-view.tsx │ │ ├── use-intersection.tsx │ │ ├── use-local-storage.tsx │ │ ├── use-previous-distinct.tsx │ │ ├── use-previous.tsx │ │ ├── use-session-storage.tsx │ │ ├── use-toggle.tsx │ │ ├── use-update-effect.tsx │ │ └── use-window-event.tsx │ └── pages │ │ └── index.tsx ├── static │ ├── .nojekyll │ └── img │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── logo.svg │ │ └── react-power-ups-social-card.jpg ├── tailwind.config.js ├── tsconfig.json └── yarn.lock ├── jest.config.ts ├── package.json ├── src ├── index.ts ├── use-count-down.ts ├── use-debounce-fn.ts ├── use-debounce.ts ├── use-first-render.ts ├── use-in-view.ts ├── use-intersection.ts ├── use-isomorphic-layout-effect.ts ├── use-local-storage.ts ├── use-previous-distinct.ts ├── use-previous.ts ├── use-session-storage.ts ├── use-throttle-fn.ts ├── use-throttle.ts ├── use-toggle.ts ├── use-update-effect.ts ├── use-window-event.ts └── utils │ └── index.ts ├── tests ├── use-count-down.test.ts ├── use-debounce-fn.test.ts ├── use-debounce.test.ts ├── use-first-render.test.ts ├── use-in-view.test.ts ├── use-intersection.test.ts ├── use-local-storage.test.ts ├── use-previous-distinc.test.ts ├── use-previous.test.ts ├── use-session-storage.test.ts ├── use-throttle-fn.test.ts ├── use-throttle.test.ts ├── use-toggle.test.ts ├── use-update-effect.test.ts └── use-window-event.test.ts ├── tsconfig.json ├── tsconfig.prod.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run lint 5 | -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/babel.config.js -------------------------------------------------------------------------------- /documentation/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/blog/authors.yml -------------------------------------------------------------------------------- /documentation/docs/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/overview.mdx -------------------------------------------------------------------------------- /documentation/docs/use-count-down.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-count-down.mdx -------------------------------------------------------------------------------- /documentation/docs/use-debounce-fn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-debounce-fn.mdx -------------------------------------------------------------------------------- /documentation/docs/use-debounce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-debounce.mdx -------------------------------------------------------------------------------- /documentation/docs/use-first-render.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-first-render.mdx -------------------------------------------------------------------------------- /documentation/docs/use-in-view.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-in-view.mdx -------------------------------------------------------------------------------- /documentation/docs/use-intersection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-intersection.mdx -------------------------------------------------------------------------------- /documentation/docs/use-isomorphic-layout-effect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-isomorphic-layout-effect.mdx -------------------------------------------------------------------------------- /documentation/docs/use-local-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-local-storage.mdx -------------------------------------------------------------------------------- /documentation/docs/use-previous-distinct.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-previous-distinct.mdx -------------------------------------------------------------------------------- /documentation/docs/use-previous.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-previous.mdx -------------------------------------------------------------------------------- /documentation/docs/use-session-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-session-storage.mdx -------------------------------------------------------------------------------- /documentation/docs/use-throttle-fn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-throttle-fn.mdx -------------------------------------------------------------------------------- /documentation/docs/use-throttle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-throttle.mdx -------------------------------------------------------------------------------- /documentation/docs/use-toggle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-toggle.mdx -------------------------------------------------------------------------------- /documentation/docs/use-update-effect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-update-effect.mdx -------------------------------------------------------------------------------- /documentation/docs/use-window-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docs/use-window-event.mdx -------------------------------------------------------------------------------- /documentation/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/docusaurus.config.js -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/package.json -------------------------------------------------------------------------------- /documentation/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/sidebars.js -------------------------------------------------------------------------------- /documentation/src/components/browser-window.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/components/browser-window.tsx -------------------------------------------------------------------------------- /documentation/src/components/param.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/components/param.tsx -------------------------------------------------------------------------------- /documentation/src/components/social-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/components/social-card.tsx -------------------------------------------------------------------------------- /documentation/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/css/custom.css -------------------------------------------------------------------------------- /documentation/src/examples/use-count-down.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-count-down.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-debounce-fn-throttle-fn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-debounce-fn-throttle-fn.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-debounce-throttle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-debounce-throttle.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-first-render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-first-render.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-in-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-in-view.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-intersection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-intersection.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-local-storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-local-storage.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-previous-distinct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-previous-distinct.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-previous.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-previous.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-session-storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-session-storage.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-toggle.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-update-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-update-effect.tsx -------------------------------------------------------------------------------- /documentation/src/examples/use-window-event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/examples/use-window-event.tsx -------------------------------------------------------------------------------- /documentation/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/src/pages/index.tsx -------------------------------------------------------------------------------- /documentation/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/static/img/docusaurus.png -------------------------------------------------------------------------------- /documentation/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/static/img/favicon.ico -------------------------------------------------------------------------------- /documentation/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/static/img/logo.svg -------------------------------------------------------------------------------- /documentation/static/img/react-power-ups-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/static/img/react-power-ups-social-card.jpg -------------------------------------------------------------------------------- /documentation/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/tailwind.config.js -------------------------------------------------------------------------------- /documentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/tsconfig.json -------------------------------------------------------------------------------- /documentation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/documentation/yarn.lock -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/use-count-down.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-count-down.ts -------------------------------------------------------------------------------- /src/use-debounce-fn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-debounce-fn.ts -------------------------------------------------------------------------------- /src/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-debounce.ts -------------------------------------------------------------------------------- /src/use-first-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-first-render.ts -------------------------------------------------------------------------------- /src/use-in-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-in-view.ts -------------------------------------------------------------------------------- /src/use-intersection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-intersection.ts -------------------------------------------------------------------------------- /src/use-isomorphic-layout-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-isomorphic-layout-effect.ts -------------------------------------------------------------------------------- /src/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-local-storage.ts -------------------------------------------------------------------------------- /src/use-previous-distinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-previous-distinct.ts -------------------------------------------------------------------------------- /src/use-previous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-previous.ts -------------------------------------------------------------------------------- /src/use-session-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-session-storage.ts -------------------------------------------------------------------------------- /src/use-throttle-fn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-throttle-fn.ts -------------------------------------------------------------------------------- /src/use-throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-throttle.ts -------------------------------------------------------------------------------- /src/use-toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-toggle.ts -------------------------------------------------------------------------------- /src/use-update-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-update-effect.ts -------------------------------------------------------------------------------- /src/use-window-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/use-window-event.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tests/use-count-down.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-count-down.test.ts -------------------------------------------------------------------------------- /tests/use-debounce-fn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-debounce-fn.test.ts -------------------------------------------------------------------------------- /tests/use-debounce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-debounce.test.ts -------------------------------------------------------------------------------- /tests/use-first-render.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-first-render.test.ts -------------------------------------------------------------------------------- /tests/use-in-view.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-in-view.test.ts -------------------------------------------------------------------------------- /tests/use-intersection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-intersection.test.ts -------------------------------------------------------------------------------- /tests/use-local-storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-local-storage.test.ts -------------------------------------------------------------------------------- /tests/use-previous-distinc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-previous-distinc.test.ts -------------------------------------------------------------------------------- /tests/use-previous.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-previous.test.ts -------------------------------------------------------------------------------- /tests/use-session-storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-session-storage.test.ts -------------------------------------------------------------------------------- /tests/use-throttle-fn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-throttle-fn.test.ts -------------------------------------------------------------------------------- /tests/use-throttle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-throttle.test.ts -------------------------------------------------------------------------------- /tests/use-toggle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-toggle.test.ts -------------------------------------------------------------------------------- /tests/use-update-effect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-update-effect.test.ts -------------------------------------------------------------------------------- /tests/use-window-event.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tests/use-window-event.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/tsconfig.prod.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afiiif/react-power-ups/HEAD/yarn.lock --------------------------------------------------------------------------------