├── .all-contributorsrc ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── cicd.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── commitlint.config.js ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── index.ts │ │ └── styles.css ├── core │ ├── arrayEquals │ │ └── index.md │ ├── arrayLastItem │ │ └── index.md │ ├── arrayToObject │ │ └── index.md │ ├── cepMask │ │ └── index.md │ ├── colorLog │ │ └── index.md │ ├── cpfMask │ │ └── index.md │ ├── cpnjMask │ │ └── index.md │ ├── deepClone │ │ └── index.md │ ├── delay │ │ └── index.md │ ├── generateArray │ │ └── index.md │ ├── generateNullArray │ │ └── index.md │ ├── generateRandomColor │ │ └── index.md │ ├── generateRandomNumber │ │ └── index.md │ ├── generateRandomString │ │ └── index.md │ ├── getNavigatorCurrentLocation │ │ └── index.md │ ├── getPercentage │ │ └── index.md │ ├── getStorage │ │ └── index.md │ ├── isEmptyObject │ │ └── index.md │ ├── objectToArray │ │ └── index.md │ ├── phoneMask │ │ └── index.md │ ├── removeArrayItemByIndex │ │ └── index.md │ ├── removeArrayItemByValue │ │ └── index.md │ ├── removeStorage │ │ └── index.md │ ├── reverseString │ │ └── index.md │ ├── setStorage │ │ └── index.md │ ├── shuffleArray │ │ └── index.md │ ├── smartLog │ │ └── index.md │ ├── upperFirst │ │ └── index.md │ ├── useRemoveDuplicates │ │ └── index.md │ └── useSecurityStorage │ │ └── index.md ├── guide │ ├── installation │ │ └── index.md │ └── what-is-essentials-utils │ │ └── index.md ├── index.md ├── parts │ └── installation.md ├── public │ ├── favicon.png │ ├── favicon.svg │ └── og-img.png ├── react │ ├── useDebounce │ │ └── index.md │ ├── useHeight │ │ └── index.md │ ├── useMousePosition │ │ └── index.md │ ├── useNow │ │ └── index.md │ ├── useScroll │ │ └── index.md │ ├── useStorage │ │ └── index.md │ ├── useToggle │ │ └── index.md │ └── useWidth │ │ └── index.md ├── src │ ├── components │ │ ├── ContributorsCard │ │ │ ├── components │ │ │ │ └── ContributorsCard.vue │ │ │ ├── index.ts │ │ │ └── models │ │ │ │ └── contributors-card.models.ts │ │ └── ContributorsSection │ │ │ ├── components │ │ │ └── ContributorsSection.vue │ │ │ └── index.ts │ └── utils │ │ └── constants.ts └── vue │ └── useMousePosition │ └── index.md ├── package.json ├── postcss.config.js ├── src ├── core │ ├── arrayEquals │ │ ├── index.ts │ │ └── test │ │ │ └── arrayEquals.spec.ts │ ├── arrayLastItem │ │ ├── index.ts │ │ └── test │ │ │ └── arrayLastItem.spec.ts │ ├── arrayToObject │ │ ├── index.ts │ │ └── test │ │ │ └── arrayToObject.spec.ts │ ├── colorLog │ │ ├── index.ts │ │ ├── models │ │ │ └── color-log.models.ts │ │ └── test │ │ │ └── colorLog.spec.ts │ ├── deepClone │ │ ├── index.ts │ │ └── test │ │ │ └── deepClone.spec.ts │ ├── delay │ │ ├── index.ts │ │ └── test │ │ │ └── delay.spec.ts │ ├── generateArray │ │ ├── index.ts │ │ └── test │ │ │ └── generateArray.spec.ts │ ├── generateNullArray │ │ ├── index.ts │ │ └── test │ │ │ └── generateNullArray.spec.ts │ ├── generateRandomColor │ │ ├── index.ts │ │ └── test │ │ │ └── generateRandomColor.spec.ts │ ├── generateRandomNumber │ │ ├── index.ts │ │ └── test │ │ │ └── generateRandomNumber.spec.ts │ ├── generateRandomString │ │ ├── index.ts │ │ └── test │ │ │ └── generateRandomString.spec.ts │ ├── getNavigatorCurrentLocation │ │ ├── index.ts │ │ ├── models │ │ │ └── get-navigator-current-location.models.ts │ │ └── test │ │ │ └── getNavigatorCurrentLocation.spec.ts │ ├── getPercentage │ │ ├── index.ts │ │ └── test │ │ │ └── getPercentage.spec.ts │ ├── getStorage │ │ ├── index.ts │ │ └── test │ │ │ └── getStorage.spec.ts │ ├── index.ts │ ├── isEmptyObject │ │ ├── index.ts │ │ └── test │ │ │ └── isEmptyObject.spec.ts │ ├── mask │ │ ├── index.ts │ │ └── test │ │ │ └── mask.spec.ts │ ├── objectToArray │ │ ├── index.ts │ │ └── test │ │ │ └── objectToArray.spec.ts │ ├── removeArrayItemByIndex │ │ ├── index.ts │ │ └── test │ │ │ └── removeArrayItemByIndex.spec.ts │ ├── removeArrayItemByValue │ │ ├── index.ts │ │ └── test │ │ │ └── removeArrayItemByValue.spec.ts │ ├── removeStorage │ │ ├── index.ts │ │ └── test │ │ │ └── removeStorage.spec.ts │ ├── reverseString │ │ ├── index.ts │ │ └── test │ │ │ └── reverseString.spec.ts │ ├── setStorage │ │ ├── index.ts │ │ └── test │ │ │ └── setStorage.spec.ts │ ├── shuffleArray │ │ ├── index.ts │ │ └── test │ │ │ └── shuffleArray.spec.ts │ ├── smartLog │ │ ├── index.ts │ │ └── test │ │ │ └── smartLog.spec.ts │ ├── upperFirst │ │ ├── index.ts │ │ └── test │ │ │ └── upperFirst.spec.ts │ ├── useRemoveDuplicates │ │ ├── index.ts │ │ ├── models │ │ │ └── use-remove-duplicates.models.ts │ │ └── test │ │ │ └── useRemoveDuplicates.spec.ts │ ├── useSecurityStorage │ │ ├── index.ts │ │ ├── models │ │ │ └── use-security-storage.models.ts │ │ └── test │ │ │ └── useSecurityStorage.spec.ts │ └── windowNavigateHandler │ │ ├── index.ts │ │ └── test │ │ └── windowNavigateHandler.spec.ts ├── index.ts ├── react │ ├── index.ts │ ├── useDebounce │ │ ├── index.ts │ │ └── test │ │ │ └── useDebounce.spec.ts │ ├── useHeight │ │ ├── index.ts │ │ └── test │ │ │ └── useHeight.spec.ts │ ├── useMousePosition │ │ └── index.ts │ ├── useNow │ │ ├── index.ts │ │ └── test │ │ │ └── useNow.spec.ts │ ├── useScroll │ │ ├── index.ts │ │ └── test │ │ │ └── useScroll.spec.ts │ ├── useStorage │ │ ├── index.ts │ │ └── tests │ │ │ └── useStorage.spec.ts │ ├── useToggle │ │ ├── index.ts │ │ └── test │ │ │ └── useToggle.spec.ts │ └── useWidth │ │ ├── index.ts │ │ └── test │ │ └── useWidth.spec.ts ├── utils │ ├── constants.ts │ └── index.ts └── vue │ ├── index.ts │ └── useMousePosition │ └── index.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /lib -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/.vitepress/theme/styles.css -------------------------------------------------------------------------------- /docs/core/arrayEquals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/arrayEquals/index.md -------------------------------------------------------------------------------- /docs/core/arrayLastItem/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/arrayLastItem/index.md -------------------------------------------------------------------------------- /docs/core/arrayToObject/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/arrayToObject/index.md -------------------------------------------------------------------------------- /docs/core/cepMask/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/cepMask/index.md -------------------------------------------------------------------------------- /docs/core/colorLog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/colorLog/index.md -------------------------------------------------------------------------------- /docs/core/cpfMask/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/cpfMask/index.md -------------------------------------------------------------------------------- /docs/core/cpnjMask/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/cpnjMask/index.md -------------------------------------------------------------------------------- /docs/core/deepClone/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/deepClone/index.md -------------------------------------------------------------------------------- /docs/core/delay/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/delay/index.md -------------------------------------------------------------------------------- /docs/core/generateArray/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/generateArray/index.md -------------------------------------------------------------------------------- /docs/core/generateNullArray/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/generateNullArray/index.md -------------------------------------------------------------------------------- /docs/core/generateRandomColor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/generateRandomColor/index.md -------------------------------------------------------------------------------- /docs/core/generateRandomNumber/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/generateRandomNumber/index.md -------------------------------------------------------------------------------- /docs/core/generateRandomString/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/generateRandomString/index.md -------------------------------------------------------------------------------- /docs/core/getNavigatorCurrentLocation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/getNavigatorCurrentLocation/index.md -------------------------------------------------------------------------------- /docs/core/getPercentage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/getPercentage/index.md -------------------------------------------------------------------------------- /docs/core/getStorage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/getStorage/index.md -------------------------------------------------------------------------------- /docs/core/isEmptyObject/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/isEmptyObject/index.md -------------------------------------------------------------------------------- /docs/core/objectToArray/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/objectToArray/index.md -------------------------------------------------------------------------------- /docs/core/phoneMask/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/phoneMask/index.md -------------------------------------------------------------------------------- /docs/core/removeArrayItemByIndex/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/removeArrayItemByIndex/index.md -------------------------------------------------------------------------------- /docs/core/removeArrayItemByValue/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/removeArrayItemByValue/index.md -------------------------------------------------------------------------------- /docs/core/removeStorage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/removeStorage/index.md -------------------------------------------------------------------------------- /docs/core/reverseString/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/reverseString/index.md -------------------------------------------------------------------------------- /docs/core/setStorage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/setStorage/index.md -------------------------------------------------------------------------------- /docs/core/shuffleArray/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/shuffleArray/index.md -------------------------------------------------------------------------------- /docs/core/smartLog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/smartLog/index.md -------------------------------------------------------------------------------- /docs/core/upperFirst/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/upperFirst/index.md -------------------------------------------------------------------------------- /docs/core/useRemoveDuplicates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/useRemoveDuplicates/index.md -------------------------------------------------------------------------------- /docs/core/useSecurityStorage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/core/useSecurityStorage/index.md -------------------------------------------------------------------------------- /docs/guide/installation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/guide/installation/index.md -------------------------------------------------------------------------------- /docs/guide/what-is-essentials-utils/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/guide/what-is-essentials-utils/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/parts/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/parts/installation.md -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/public/favicon.svg -------------------------------------------------------------------------------- /docs/public/og-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/public/og-img.png -------------------------------------------------------------------------------- /docs/react/useDebounce/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useDebounce/index.md -------------------------------------------------------------------------------- /docs/react/useHeight/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useHeight/index.md -------------------------------------------------------------------------------- /docs/react/useMousePosition/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useMousePosition/index.md -------------------------------------------------------------------------------- /docs/react/useNow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useNow/index.md -------------------------------------------------------------------------------- /docs/react/useScroll/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useScroll/index.md -------------------------------------------------------------------------------- /docs/react/useStorage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useStorage/index.md -------------------------------------------------------------------------------- /docs/react/useToggle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useToggle/index.md -------------------------------------------------------------------------------- /docs/react/useWidth/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/react/useWidth/index.md -------------------------------------------------------------------------------- /docs/src/components/ContributorsCard/components/ContributorsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/src/components/ContributorsCard/components/ContributorsCard.vue -------------------------------------------------------------------------------- /docs/src/components/ContributorsCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/src/components/ContributorsCard/index.ts -------------------------------------------------------------------------------- /docs/src/components/ContributorsCard/models/contributors-card.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/src/components/ContributorsCard/models/contributors-card.models.ts -------------------------------------------------------------------------------- /docs/src/components/ContributorsSection/components/ContributorsSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/src/components/ContributorsSection/components/ContributorsSection.vue -------------------------------------------------------------------------------- /docs/src/components/ContributorsSection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/src/components/ContributorsSection/index.ts -------------------------------------------------------------------------------- /docs/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/src/utils/constants.ts -------------------------------------------------------------------------------- /docs/vue/useMousePosition/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/docs/vue/useMousePosition/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/core/arrayEquals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/arrayEquals/index.ts -------------------------------------------------------------------------------- /src/core/arrayEquals/test/arrayEquals.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/arrayEquals/test/arrayEquals.spec.ts -------------------------------------------------------------------------------- /src/core/arrayLastItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/arrayLastItem/index.ts -------------------------------------------------------------------------------- /src/core/arrayLastItem/test/arrayLastItem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/arrayLastItem/test/arrayLastItem.spec.ts -------------------------------------------------------------------------------- /src/core/arrayToObject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/arrayToObject/index.ts -------------------------------------------------------------------------------- /src/core/arrayToObject/test/arrayToObject.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/arrayToObject/test/arrayToObject.spec.ts -------------------------------------------------------------------------------- /src/core/colorLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/colorLog/index.ts -------------------------------------------------------------------------------- /src/core/colorLog/models/color-log.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/colorLog/models/color-log.models.ts -------------------------------------------------------------------------------- /src/core/colorLog/test/colorLog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/colorLog/test/colorLog.spec.ts -------------------------------------------------------------------------------- /src/core/deepClone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/deepClone/index.ts -------------------------------------------------------------------------------- /src/core/deepClone/test/deepClone.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/deepClone/test/deepClone.spec.ts -------------------------------------------------------------------------------- /src/core/delay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/delay/index.ts -------------------------------------------------------------------------------- /src/core/delay/test/delay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/delay/test/delay.spec.ts -------------------------------------------------------------------------------- /src/core/generateArray/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateArray/index.ts -------------------------------------------------------------------------------- /src/core/generateArray/test/generateArray.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateArray/test/generateArray.spec.ts -------------------------------------------------------------------------------- /src/core/generateNullArray/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateNullArray/index.ts -------------------------------------------------------------------------------- /src/core/generateNullArray/test/generateNullArray.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateNullArray/test/generateNullArray.spec.ts -------------------------------------------------------------------------------- /src/core/generateRandomColor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateRandomColor/index.ts -------------------------------------------------------------------------------- /src/core/generateRandomColor/test/generateRandomColor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateRandomColor/test/generateRandomColor.spec.ts -------------------------------------------------------------------------------- /src/core/generateRandomNumber/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateRandomNumber/index.ts -------------------------------------------------------------------------------- /src/core/generateRandomNumber/test/generateRandomNumber.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateRandomNumber/test/generateRandomNumber.spec.ts -------------------------------------------------------------------------------- /src/core/generateRandomString/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateRandomString/index.ts -------------------------------------------------------------------------------- /src/core/generateRandomString/test/generateRandomString.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/generateRandomString/test/generateRandomString.spec.ts -------------------------------------------------------------------------------- /src/core/getNavigatorCurrentLocation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/getNavigatorCurrentLocation/index.ts -------------------------------------------------------------------------------- /src/core/getNavigatorCurrentLocation/models/get-navigator-current-location.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/getNavigatorCurrentLocation/models/get-navigator-current-location.models.ts -------------------------------------------------------------------------------- /src/core/getNavigatorCurrentLocation/test/getNavigatorCurrentLocation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/getNavigatorCurrentLocation/test/getNavigatorCurrentLocation.spec.ts -------------------------------------------------------------------------------- /src/core/getPercentage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/getPercentage/index.ts -------------------------------------------------------------------------------- /src/core/getPercentage/test/getPercentage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/getPercentage/test/getPercentage.spec.ts -------------------------------------------------------------------------------- /src/core/getStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/getStorage/index.ts -------------------------------------------------------------------------------- /src/core/getStorage/test/getStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/getStorage/test/getStorage.spec.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/isEmptyObject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/isEmptyObject/index.ts -------------------------------------------------------------------------------- /src/core/isEmptyObject/test/isEmptyObject.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/isEmptyObject/test/isEmptyObject.spec.ts -------------------------------------------------------------------------------- /src/core/mask/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/mask/index.ts -------------------------------------------------------------------------------- /src/core/mask/test/mask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/mask/test/mask.spec.ts -------------------------------------------------------------------------------- /src/core/objectToArray/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/objectToArray/index.ts -------------------------------------------------------------------------------- /src/core/objectToArray/test/objectToArray.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/objectToArray/test/objectToArray.spec.ts -------------------------------------------------------------------------------- /src/core/removeArrayItemByIndex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/removeArrayItemByIndex/index.ts -------------------------------------------------------------------------------- /src/core/removeArrayItemByIndex/test/removeArrayItemByIndex.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/removeArrayItemByIndex/test/removeArrayItemByIndex.spec.ts -------------------------------------------------------------------------------- /src/core/removeArrayItemByValue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/removeArrayItemByValue/index.ts -------------------------------------------------------------------------------- /src/core/removeArrayItemByValue/test/removeArrayItemByValue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/removeArrayItemByValue/test/removeArrayItemByValue.spec.ts -------------------------------------------------------------------------------- /src/core/removeStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/removeStorage/index.ts -------------------------------------------------------------------------------- /src/core/removeStorage/test/removeStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/removeStorage/test/removeStorage.spec.ts -------------------------------------------------------------------------------- /src/core/reverseString/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/reverseString/index.ts -------------------------------------------------------------------------------- /src/core/reverseString/test/reverseString.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/reverseString/test/reverseString.spec.ts -------------------------------------------------------------------------------- /src/core/setStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/setStorage/index.ts -------------------------------------------------------------------------------- /src/core/setStorage/test/setStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/setStorage/test/setStorage.spec.ts -------------------------------------------------------------------------------- /src/core/shuffleArray/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/shuffleArray/index.ts -------------------------------------------------------------------------------- /src/core/shuffleArray/test/shuffleArray.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/shuffleArray/test/shuffleArray.spec.ts -------------------------------------------------------------------------------- /src/core/smartLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/smartLog/index.ts -------------------------------------------------------------------------------- /src/core/smartLog/test/smartLog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/smartLog/test/smartLog.spec.ts -------------------------------------------------------------------------------- /src/core/upperFirst/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/upperFirst/index.ts -------------------------------------------------------------------------------- /src/core/upperFirst/test/upperFirst.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/upperFirst/test/upperFirst.spec.ts -------------------------------------------------------------------------------- /src/core/useRemoveDuplicates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/useRemoveDuplicates/index.ts -------------------------------------------------------------------------------- /src/core/useRemoveDuplicates/models/use-remove-duplicates.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/useRemoveDuplicates/models/use-remove-duplicates.models.ts -------------------------------------------------------------------------------- /src/core/useRemoveDuplicates/test/useRemoveDuplicates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/useRemoveDuplicates/test/useRemoveDuplicates.spec.ts -------------------------------------------------------------------------------- /src/core/useSecurityStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/useSecurityStorage/index.ts -------------------------------------------------------------------------------- /src/core/useSecurityStorage/models/use-security-storage.models.ts: -------------------------------------------------------------------------------- 1 | export interface SecurityStorageOptions { 2 | secret: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/core/useSecurityStorage/test/useSecurityStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/useSecurityStorage/test/useSecurityStorage.spec.ts -------------------------------------------------------------------------------- /src/core/windowNavigateHandler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/windowNavigateHandler/index.ts -------------------------------------------------------------------------------- /src/core/windowNavigateHandler/test/windowNavigateHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/core/windowNavigateHandler/test/windowNavigateHandler.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./core"; 2 | -------------------------------------------------------------------------------- /src/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/index.ts -------------------------------------------------------------------------------- /src/react/useDebounce/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useDebounce/index.ts -------------------------------------------------------------------------------- /src/react/useDebounce/test/useDebounce.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useDebounce/test/useDebounce.spec.ts -------------------------------------------------------------------------------- /src/react/useHeight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useHeight/index.ts -------------------------------------------------------------------------------- /src/react/useHeight/test/useHeight.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useHeight/test/useHeight.spec.ts -------------------------------------------------------------------------------- /src/react/useMousePosition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useMousePosition/index.ts -------------------------------------------------------------------------------- /src/react/useNow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useNow/index.ts -------------------------------------------------------------------------------- /src/react/useNow/test/useNow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useNow/test/useNow.spec.ts -------------------------------------------------------------------------------- /src/react/useScroll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useScroll/index.ts -------------------------------------------------------------------------------- /src/react/useScroll/test/useScroll.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useScroll/test/useScroll.spec.ts -------------------------------------------------------------------------------- /src/react/useStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useStorage/index.ts -------------------------------------------------------------------------------- /src/react/useStorage/tests/useStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useStorage/tests/useStorage.spec.ts -------------------------------------------------------------------------------- /src/react/useToggle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useToggle/index.ts -------------------------------------------------------------------------------- /src/react/useToggle/test/useToggle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useToggle/test/useToggle.spec.ts -------------------------------------------------------------------------------- /src/react/useWidth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useWidth/index.ts -------------------------------------------------------------------------------- /src/react/useWidth/test/useWidth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/react/useWidth/test/useWidth.spec.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/vue/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./useMousePosition"; 2 | -------------------------------------------------------------------------------- /src/vue/useMousePosition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/src/vue/useMousePosition/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesleyara/essentials-utils/HEAD/yarn.lock --------------------------------------------------------------------------------