├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── easy-dates.iml ├── modules.xml └── vcs.xml ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE.md ├── README.md ├── docs ├── .gitignore ├── .prettierignore ├── README.md ├── babel.config.js ├── docs │ ├── contributing │ │ ├── _category_.json │ │ ├── code-of-conduct.md │ │ └── index.md │ ├── functions │ │ ├── _category_.json │ │ ├── areIntervalsOverlapping.md │ │ ├── closestTo.md │ │ ├── dateNow.md │ │ ├── dateNowISO.md │ │ ├── dateNowUnix.md │ │ ├── dateToMilliseconds.md │ │ ├── dateToUnix.md │ │ ├── daysFromNow.md │ │ ├── daysToWeeks.md │ │ ├── findEarliest.md │ │ ├── findLatest.md │ │ ├── getDaysInMonth.md │ │ ├── getDuration.md │ │ ├── getMonthIndex.md │ │ ├── getMonthName.md │ │ ├── getOverlappingDaysInIntervals.md │ │ ├── getTodayName.md │ │ ├── getTomorrow.md │ │ ├── getYear.md │ │ ├── hoursToMilliseconds.md │ │ ├── hoursToMinutes.md │ │ ├── index.md │ │ ├── isAfter.md │ │ ├── isBefore.md │ │ ├── isDate.md │ │ ├── isEqual.md │ │ ├── isInFuture.md │ │ ├── isInPast.md │ │ ├── millisecondsToHours.md │ │ ├── millisecondsToMinutes.md │ │ ├── millisecondsToSeconds.md │ │ ├── minutesToHours.md │ │ ├── minutesToMilliseconds.md │ │ ├── minutesToSeconds.md │ │ ├── monthsToQuarters.md │ │ ├── monthsToYears.md │ │ ├── quartersToMonths.md │ │ ├── quartersToYears.md │ │ ├── secondsToHours.md │ │ ├── secondsToMilliseconds.md │ │ ├── secondsToMinutes.md │ │ ├── unixToDate.md │ │ ├── unixToDuration.md │ │ ├── weeksToDays.md │ │ ├── yearsToDays.md │ │ ├── yearsToMonths.md │ │ └── yearsToQuarters.md │ ├── intro.md │ └── introduction │ │ ├── _category_.json │ │ ├── faq.md │ │ ├── index.md │ │ ├── installation.md │ │ ├── playground.md │ │ └── usage.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── CallToAction │ │ │ ├── CallToAction.jsx │ │ │ └── CallToAction.module.css │ │ ├── HomepageFeatures │ │ │ ├── HomepageFeatures.jsx │ │ │ └── HomepageFeatures.module.css │ │ └── HomepageHero │ │ │ ├── HomepageHero.jsx │ │ │ └── HomepageHero.module.css │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.js │ │ └── index.module.css │ └── theme │ │ └── ReactLiveScope │ │ └── index.js └── static │ ├── .nojekyll │ └── img │ ├── calendar-dark.svg │ ├── calendar.png │ ├── calendar.svg │ ├── favicon.ico │ ├── github.svg │ └── tutorial │ ├── docsVersionDropdown.png │ └── localeDropdown.png ├── esbuild.js ├── package.json ├── scripts └── createNewFunctionFiles.js └── src ├── areIntervalsOverlapping ├── areIntervalsOverlapping.js └── areIntervalsOverlapping.test.js ├── closestTo ├── closestTo.js └── closestTo.test.js ├── dateNow ├── dateNow.js └── dateNow.test.js ├── dateNowIso ├── dateNowISO.js └── dateNowIso.test.js ├── dateNowUnix ├── dateNowUnix.js └── dateNowUnix.test.js ├── dateToMilliseconds ├── dateToMilliseconds.js └── dateToMilliseconds.test.js ├── dateToUnix ├── dateToUnix.js └── dateToUnix.test.js ├── daysFromNow ├── daysFromNow.js └── daysFromNow.test.js ├── daysToWeeks ├── daysToWeeks.js └── daysToWeeks.test.js ├── findEarliest ├── findEarliest.js └── findEarliest.test.js ├── findLatest ├── findLatest.js └── findLatest.test.js ├── getDaysInMonth ├── getDaysInMonth.js └── getDaysInMonth.test.js ├── getDuration ├── getDuration.js └── getDuration.test.js ├── getMonthIndex ├── getMonthIndex.js └── getMonthIndex.test.js ├── getMonthName ├── getMonthName.js └── getMonthName.test.js ├── getOverlappingDaysInIntervals ├── getOverlappingDaysInIntervals.js └── getOverlappingDaysInIntervals.test.js ├── getTodayName ├── getTodayName.js └── getTodayName.test.js ├── getTomorrow ├── getTomorrow.js └── getTomorrow.test.js ├── getYear ├── getYear.js └── getYear.test.js ├── hoursToMilliseconds ├── hoursToMilliseconds.js └── hoursToMilliseconds.test.js ├── hoursToMinutes ├── hoursToMinutes.js └── hoursToMinutes.test.js ├── index.js ├── isAfter ├── isAfter.js └── isAfter.test.js ├── isBefore ├── isBefore.js └── isBefore.test.js ├── isDate ├── isDate.js └── isDate.test.js ├── isEqual ├── isEqual.js └── isEqual.test.js ├── isInFuture ├── isInFuture.js └── isInFuture.test.js ├── isInPast ├── isInPast.js └── isInPast.test.js ├── millisecondsToHours ├── millisecondsToHours.js └── millisecondsToHours.test.js ├── millisecondsToMinutes ├── millisecondsToMinutes.js └── millisecondsToMinutes.test.js ├── millisecondsToSeconds ├── millisecondsToSeconds.js └── millisecondsToSeconds.test.js ├── minutesToHours ├── minutesToHours.js └── minutesToHours.test.js ├── minutesToMilliseconds ├── minutesToMilliseconds.js └── minutesToMilliseconds.test.js ├── minutesToSeconds ├── minutesToSeconds.js └── minutesToSeconds.test.js ├── monthsToQuarters ├── monthsToQuarters.js └── monthsToQuarters.test.js ├── monthsToYears ├── monthsToYears.js └── monthsToYears.test.js ├── quartersToMonths ├── quartersToMonths.js └── quartersToMonths.test.js ├── quartersToYears ├── quartersToYears.js └── quartersToYears.test.js ├── secondsToHours ├── secondsToHours.js └── secondsToHours.test.js ├── secondsToMilliseconds ├── secondsToMilliseconds.js └── secondsToMilliseconds.test.js ├── secondsToMinutes ├── secondsToMinutes.js └── secondsToMinutes.test.js ├── unixToDate ├── unixToDate.js └── unixToDate.test.js ├── unixToDuration ├── unixToDuration.js └── unixToDuration.test.js ├── weeksToDays ├── weeksToDays.js └── weeksToDays.test.js ├── yearsToDays ├── yearsToDays.js └── yearsToDays.test.js ├── yearsToMonths ├── yearsToMonths.js └── yearsToMonths.test.js └── yearsToQuarters ├── yearsToQuarters.js └── yearsToQuarters.test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | src/*/*.test.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | coverage -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/easy-dates.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.idea/easy-dates.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | coverage 3 | dist -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.prettierignore: -------------------------------------------------------------------------------- 1 | .docusaurus 2 | docs 3 | node_modules 4 | static 5 | src/theme 6 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/contributing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/contributing/_category_.json -------------------------------------------------------------------------------- /docs/docs/contributing/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/contributing/code-of-conduct.md -------------------------------------------------------------------------------- /docs/docs/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/contributing/index.md -------------------------------------------------------------------------------- /docs/docs/functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/_category_.json -------------------------------------------------------------------------------- /docs/docs/functions/areIntervalsOverlapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/areIntervalsOverlapping.md -------------------------------------------------------------------------------- /docs/docs/functions/closestTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/closestTo.md -------------------------------------------------------------------------------- /docs/docs/functions/dateNow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/dateNow.md -------------------------------------------------------------------------------- /docs/docs/functions/dateNowISO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/dateNowISO.md -------------------------------------------------------------------------------- /docs/docs/functions/dateNowUnix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/dateNowUnix.md -------------------------------------------------------------------------------- /docs/docs/functions/dateToMilliseconds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/dateToMilliseconds.md -------------------------------------------------------------------------------- /docs/docs/functions/dateToUnix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/dateToUnix.md -------------------------------------------------------------------------------- /docs/docs/functions/daysFromNow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/daysFromNow.md -------------------------------------------------------------------------------- /docs/docs/functions/daysToWeeks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/daysToWeeks.md -------------------------------------------------------------------------------- /docs/docs/functions/findEarliest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/findEarliest.md -------------------------------------------------------------------------------- /docs/docs/functions/findLatest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/findLatest.md -------------------------------------------------------------------------------- /docs/docs/functions/getDaysInMonth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getDaysInMonth.md -------------------------------------------------------------------------------- /docs/docs/functions/getDuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getDuration.md -------------------------------------------------------------------------------- /docs/docs/functions/getMonthIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getMonthIndex.md -------------------------------------------------------------------------------- /docs/docs/functions/getMonthName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getMonthName.md -------------------------------------------------------------------------------- /docs/docs/functions/getOverlappingDaysInIntervals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getOverlappingDaysInIntervals.md -------------------------------------------------------------------------------- /docs/docs/functions/getTodayName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getTodayName.md -------------------------------------------------------------------------------- /docs/docs/functions/getTomorrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getTomorrow.md -------------------------------------------------------------------------------- /docs/docs/functions/getYear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/getYear.md -------------------------------------------------------------------------------- /docs/docs/functions/hoursToMilliseconds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/hoursToMilliseconds.md -------------------------------------------------------------------------------- /docs/docs/functions/hoursToMinutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/hoursToMinutes.md -------------------------------------------------------------------------------- /docs/docs/functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/index.md -------------------------------------------------------------------------------- /docs/docs/functions/isAfter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/isAfter.md -------------------------------------------------------------------------------- /docs/docs/functions/isBefore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/isBefore.md -------------------------------------------------------------------------------- /docs/docs/functions/isDate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/isDate.md -------------------------------------------------------------------------------- /docs/docs/functions/isEqual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/isEqual.md -------------------------------------------------------------------------------- /docs/docs/functions/isInFuture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/isInFuture.md -------------------------------------------------------------------------------- /docs/docs/functions/isInPast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/isInPast.md -------------------------------------------------------------------------------- /docs/docs/functions/millisecondsToHours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/millisecondsToHours.md -------------------------------------------------------------------------------- /docs/docs/functions/millisecondsToMinutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/millisecondsToMinutes.md -------------------------------------------------------------------------------- /docs/docs/functions/millisecondsToSeconds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/millisecondsToSeconds.md -------------------------------------------------------------------------------- /docs/docs/functions/minutesToHours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/minutesToHours.md -------------------------------------------------------------------------------- /docs/docs/functions/minutesToMilliseconds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/minutesToMilliseconds.md -------------------------------------------------------------------------------- /docs/docs/functions/minutesToSeconds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/minutesToSeconds.md -------------------------------------------------------------------------------- /docs/docs/functions/monthsToQuarters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/monthsToQuarters.md -------------------------------------------------------------------------------- /docs/docs/functions/monthsToYears.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/monthsToYears.md -------------------------------------------------------------------------------- /docs/docs/functions/quartersToMonths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/quartersToMonths.md -------------------------------------------------------------------------------- /docs/docs/functions/quartersToYears.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/quartersToYears.md -------------------------------------------------------------------------------- /docs/docs/functions/secondsToHours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/secondsToHours.md -------------------------------------------------------------------------------- /docs/docs/functions/secondsToMilliseconds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/secondsToMilliseconds.md -------------------------------------------------------------------------------- /docs/docs/functions/secondsToMinutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/secondsToMinutes.md -------------------------------------------------------------------------------- /docs/docs/functions/unixToDate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/unixToDate.md -------------------------------------------------------------------------------- /docs/docs/functions/unixToDuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/unixToDuration.md -------------------------------------------------------------------------------- /docs/docs/functions/weeksToDays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/weeksToDays.md -------------------------------------------------------------------------------- /docs/docs/functions/yearsToDays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/yearsToDays.md -------------------------------------------------------------------------------- /docs/docs/functions/yearsToMonths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/yearsToMonths.md -------------------------------------------------------------------------------- /docs/docs/functions/yearsToQuarters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/functions/yearsToQuarters.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docs/introduction/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/introduction/_category_.json -------------------------------------------------------------------------------- /docs/docs/introduction/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/introduction/faq.md -------------------------------------------------------------------------------- /docs/docs/introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/introduction/index.md -------------------------------------------------------------------------------- /docs/docs/introduction/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/introduction/installation.md -------------------------------------------------------------------------------- /docs/docs/introduction/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/introduction/playground.md -------------------------------------------------------------------------------- /docs/docs/introduction/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docs/introduction/usage.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/CallToAction/CallToAction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/components/CallToAction/CallToAction.jsx -------------------------------------------------------------------------------- /docs/src/components/CallToAction/CallToAction.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/components/CallToAction/CallToAction.module.css -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/HomepageFeatures.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/components/HomepageFeatures/HomepageFeatures.jsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/components/HomepageFeatures/HomepageFeatures.module.css -------------------------------------------------------------------------------- /docs/src/components/HomepageHero/HomepageHero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/components/HomepageHero/HomepageHero.jsx -------------------------------------------------------------------------------- /docs/src/components/HomepageHero/HomepageHero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/components/HomepageHero/HomepageHero.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/theme/ReactLiveScope/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/src/theme/ReactLiveScope/index.js -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/calendar-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/static/img/calendar-dark.svg -------------------------------------------------------------------------------- /docs/static/img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/static/img/calendar.png -------------------------------------------------------------------------------- /docs/static/img/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/static/img/calendar.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/static/img/github.svg -------------------------------------------------------------------------------- /docs/static/img/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/static/img/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /docs/static/img/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/docs/static/img/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/esbuild.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/package.json -------------------------------------------------------------------------------- /scripts/createNewFunctionFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/scripts/createNewFunctionFiles.js -------------------------------------------------------------------------------- /src/areIntervalsOverlapping/areIntervalsOverlapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/areIntervalsOverlapping/areIntervalsOverlapping.js -------------------------------------------------------------------------------- /src/areIntervalsOverlapping/areIntervalsOverlapping.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/areIntervalsOverlapping/areIntervalsOverlapping.test.js -------------------------------------------------------------------------------- /src/closestTo/closestTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/closestTo/closestTo.js -------------------------------------------------------------------------------- /src/closestTo/closestTo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/closestTo/closestTo.test.js -------------------------------------------------------------------------------- /src/dateNow/dateNow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateNow/dateNow.js -------------------------------------------------------------------------------- /src/dateNow/dateNow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateNow/dateNow.test.js -------------------------------------------------------------------------------- /src/dateNowIso/dateNowISO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateNowIso/dateNowISO.js -------------------------------------------------------------------------------- /src/dateNowIso/dateNowIso.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateNowIso/dateNowIso.test.js -------------------------------------------------------------------------------- /src/dateNowUnix/dateNowUnix.js: -------------------------------------------------------------------------------- 1 | export function dateNowUnix() { 2 | return Math.floor(Date.now() / 1000); 3 | } 4 | -------------------------------------------------------------------------------- /src/dateNowUnix/dateNowUnix.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateNowUnix/dateNowUnix.test.js -------------------------------------------------------------------------------- /src/dateToMilliseconds/dateToMilliseconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateToMilliseconds/dateToMilliseconds.js -------------------------------------------------------------------------------- /src/dateToMilliseconds/dateToMilliseconds.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateToMilliseconds/dateToMilliseconds.test.js -------------------------------------------------------------------------------- /src/dateToUnix/dateToUnix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateToUnix/dateToUnix.js -------------------------------------------------------------------------------- /src/dateToUnix/dateToUnix.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/dateToUnix/dateToUnix.test.js -------------------------------------------------------------------------------- /src/daysFromNow/daysFromNow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/daysFromNow/daysFromNow.js -------------------------------------------------------------------------------- /src/daysFromNow/daysFromNow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/daysFromNow/daysFromNow.test.js -------------------------------------------------------------------------------- /src/daysToWeeks/daysToWeeks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/daysToWeeks/daysToWeeks.js -------------------------------------------------------------------------------- /src/daysToWeeks/daysToWeeks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/daysToWeeks/daysToWeeks.test.js -------------------------------------------------------------------------------- /src/findEarliest/findEarliest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/findEarliest/findEarliest.js -------------------------------------------------------------------------------- /src/findEarliest/findEarliest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/findEarliest/findEarliest.test.js -------------------------------------------------------------------------------- /src/findLatest/findLatest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/findLatest/findLatest.js -------------------------------------------------------------------------------- /src/findLatest/findLatest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/findLatest/findLatest.test.js -------------------------------------------------------------------------------- /src/getDaysInMonth/getDaysInMonth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getDaysInMonth/getDaysInMonth.js -------------------------------------------------------------------------------- /src/getDaysInMonth/getDaysInMonth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getDaysInMonth/getDaysInMonth.test.js -------------------------------------------------------------------------------- /src/getDuration/getDuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getDuration/getDuration.js -------------------------------------------------------------------------------- /src/getDuration/getDuration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getDuration/getDuration.test.js -------------------------------------------------------------------------------- /src/getMonthIndex/getMonthIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getMonthIndex/getMonthIndex.js -------------------------------------------------------------------------------- /src/getMonthIndex/getMonthIndex.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getMonthIndex/getMonthIndex.test.js -------------------------------------------------------------------------------- /src/getMonthName/getMonthName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getMonthName/getMonthName.js -------------------------------------------------------------------------------- /src/getMonthName/getMonthName.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getMonthName/getMonthName.test.js -------------------------------------------------------------------------------- /src/getOverlappingDaysInIntervals/getOverlappingDaysInIntervals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getOverlappingDaysInIntervals/getOverlappingDaysInIntervals.js -------------------------------------------------------------------------------- /src/getOverlappingDaysInIntervals/getOverlappingDaysInIntervals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getOverlappingDaysInIntervals/getOverlappingDaysInIntervals.test.js -------------------------------------------------------------------------------- /src/getTodayName/getTodayName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getTodayName/getTodayName.js -------------------------------------------------------------------------------- /src/getTodayName/getTodayName.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getTodayName/getTodayName.test.js -------------------------------------------------------------------------------- /src/getTomorrow/getTomorrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getTomorrow/getTomorrow.js -------------------------------------------------------------------------------- /src/getTomorrow/getTomorrow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getTomorrow/getTomorrow.test.js -------------------------------------------------------------------------------- /src/getYear/getYear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getYear/getYear.js -------------------------------------------------------------------------------- /src/getYear/getYear.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/getYear/getYear.test.js -------------------------------------------------------------------------------- /src/hoursToMilliseconds/hoursToMilliseconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/hoursToMilliseconds/hoursToMilliseconds.js -------------------------------------------------------------------------------- /src/hoursToMilliseconds/hoursToMilliseconds.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/hoursToMilliseconds/hoursToMilliseconds.test.js -------------------------------------------------------------------------------- /src/hoursToMinutes/hoursToMinutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/hoursToMinutes/hoursToMinutes.js -------------------------------------------------------------------------------- /src/hoursToMinutes/hoursToMinutes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/hoursToMinutes/hoursToMinutes.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/index.js -------------------------------------------------------------------------------- /src/isAfter/isAfter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isAfter/isAfter.js -------------------------------------------------------------------------------- /src/isAfter/isAfter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isAfter/isAfter.test.js -------------------------------------------------------------------------------- /src/isBefore/isBefore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isBefore/isBefore.js -------------------------------------------------------------------------------- /src/isBefore/isBefore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isBefore/isBefore.test.js -------------------------------------------------------------------------------- /src/isDate/isDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isDate/isDate.js -------------------------------------------------------------------------------- /src/isDate/isDate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isDate/isDate.test.js -------------------------------------------------------------------------------- /src/isEqual/isEqual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isEqual/isEqual.js -------------------------------------------------------------------------------- /src/isEqual/isEqual.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isEqual/isEqual.test.js -------------------------------------------------------------------------------- /src/isInFuture/isInFuture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isInFuture/isInFuture.js -------------------------------------------------------------------------------- /src/isInFuture/isInFuture.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isInFuture/isInFuture.test.js -------------------------------------------------------------------------------- /src/isInPast/isInPast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isInPast/isInPast.js -------------------------------------------------------------------------------- /src/isInPast/isInPast.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/isInPast/isInPast.test.js -------------------------------------------------------------------------------- /src/millisecondsToHours/millisecondsToHours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/millisecondsToHours/millisecondsToHours.js -------------------------------------------------------------------------------- /src/millisecondsToHours/millisecondsToHours.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/millisecondsToHours/millisecondsToHours.test.js -------------------------------------------------------------------------------- /src/millisecondsToMinutes/millisecondsToMinutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/millisecondsToMinutes/millisecondsToMinutes.js -------------------------------------------------------------------------------- /src/millisecondsToMinutes/millisecondsToMinutes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/millisecondsToMinutes/millisecondsToMinutes.test.js -------------------------------------------------------------------------------- /src/millisecondsToSeconds/millisecondsToSeconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/millisecondsToSeconds/millisecondsToSeconds.js -------------------------------------------------------------------------------- /src/millisecondsToSeconds/millisecondsToSeconds.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/millisecondsToSeconds/millisecondsToSeconds.test.js -------------------------------------------------------------------------------- /src/minutesToHours/minutesToHours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/minutesToHours/minutesToHours.js -------------------------------------------------------------------------------- /src/minutesToHours/minutesToHours.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/minutesToHours/minutesToHours.test.js -------------------------------------------------------------------------------- /src/minutesToMilliseconds/minutesToMilliseconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/minutesToMilliseconds/minutesToMilliseconds.js -------------------------------------------------------------------------------- /src/minutesToMilliseconds/minutesToMilliseconds.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/minutesToMilliseconds/minutesToMilliseconds.test.js -------------------------------------------------------------------------------- /src/minutesToSeconds/minutesToSeconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/minutesToSeconds/minutesToSeconds.js -------------------------------------------------------------------------------- /src/minutesToSeconds/minutesToSeconds.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/minutesToSeconds/minutesToSeconds.test.js -------------------------------------------------------------------------------- /src/monthsToQuarters/monthsToQuarters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/monthsToQuarters/monthsToQuarters.js -------------------------------------------------------------------------------- /src/monthsToQuarters/monthsToQuarters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/monthsToQuarters/monthsToQuarters.test.js -------------------------------------------------------------------------------- /src/monthsToYears/monthsToYears.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/monthsToYears/monthsToYears.js -------------------------------------------------------------------------------- /src/monthsToYears/monthsToYears.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/monthsToYears/monthsToYears.test.js -------------------------------------------------------------------------------- /src/quartersToMonths/quartersToMonths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/quartersToMonths/quartersToMonths.js -------------------------------------------------------------------------------- /src/quartersToMonths/quartersToMonths.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/quartersToMonths/quartersToMonths.test.js -------------------------------------------------------------------------------- /src/quartersToYears/quartersToYears.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/quartersToYears/quartersToYears.js -------------------------------------------------------------------------------- /src/quartersToYears/quartersToYears.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/quartersToYears/quartersToYears.test.js -------------------------------------------------------------------------------- /src/secondsToHours/secondsToHours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/secondsToHours/secondsToHours.js -------------------------------------------------------------------------------- /src/secondsToHours/secondsToHours.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/secondsToHours/secondsToHours.test.js -------------------------------------------------------------------------------- /src/secondsToMilliseconds/secondsToMilliseconds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/secondsToMilliseconds/secondsToMilliseconds.js -------------------------------------------------------------------------------- /src/secondsToMilliseconds/secondsToMilliseconds.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/secondsToMilliseconds/secondsToMilliseconds.test.js -------------------------------------------------------------------------------- /src/secondsToMinutes/secondsToMinutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/secondsToMinutes/secondsToMinutes.js -------------------------------------------------------------------------------- /src/secondsToMinutes/secondsToMinutes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/secondsToMinutes/secondsToMinutes.test.js -------------------------------------------------------------------------------- /src/unixToDate/unixToDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/unixToDate/unixToDate.js -------------------------------------------------------------------------------- /src/unixToDate/unixToDate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/unixToDate/unixToDate.test.js -------------------------------------------------------------------------------- /src/unixToDuration/unixToDuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/unixToDuration/unixToDuration.js -------------------------------------------------------------------------------- /src/unixToDuration/unixToDuration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/unixToDuration/unixToDuration.test.js -------------------------------------------------------------------------------- /src/weeksToDays/weeksToDays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/weeksToDays/weeksToDays.js -------------------------------------------------------------------------------- /src/weeksToDays/weeksToDays.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/weeksToDays/weeksToDays.test.js -------------------------------------------------------------------------------- /src/yearsToDays/yearsToDays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/yearsToDays/yearsToDays.js -------------------------------------------------------------------------------- /src/yearsToDays/yearsToDays.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/yearsToDays/yearsToDays.test.js -------------------------------------------------------------------------------- /src/yearsToMonths/yearsToMonths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/yearsToMonths/yearsToMonths.js -------------------------------------------------------------------------------- /src/yearsToMonths/yearsToMonths.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/yearsToMonths/yearsToMonths.test.js -------------------------------------------------------------------------------- /src/yearsToQuarters/yearsToQuarters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/yearsToQuarters/yearsToQuarters.js -------------------------------------------------------------------------------- /src/yearsToQuarters/yearsToQuarters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandypockets/easy-dates/HEAD/src/yearsToQuarters/yearsToQuarters.test.js --------------------------------------------------------------------------------