├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bench ├── add.bench.js ├── benchmark.js ├── clone.bench.js ├── compare.bench.js ├── diff.bench.js ├── endOf.bench.js ├── format.bench.js ├── index.js ├── parse.bench.js ├── startOf.bench.js └── timeZone.bench.js ├── docs └── en │ ├── API-reference.md │ ├── I18n.md │ ├── Installation.md │ └── Plugin.md ├── index.d.ts ├── karma.sauce.conf.js ├── package.json ├── src ├── constant.js ├── index.js ├── locale │ ├── ar.js │ ├── bg.js │ ├── ca.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── el.js │ ├── es-es.js │ ├── es.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── he.js │ ├── hr.js │ ├── hu.js │ ├── id.js │ ├── it.js │ ├── ja.js │ ├── ka.js │ ├── ko.js │ ├── lt.js │ ├── nb.js │ ├── nl.js │ ├── nn.js │ ├── pl.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sk.js │ ├── sr-cyrl.js │ ├── sr.js │ ├── sv.js │ ├── th.js │ ├── tr.js │ ├── uk.js │ ├── zh-cn.js │ └── zh-tw.js ├── plugin │ ├── advancedFormat │ │ └── index.js │ ├── buddhistEra │ │ └── index.js │ ├── customParseFormat │ │ ├── index.js │ │ └── parseFormattedInput.js │ ├── isBetween │ │ └── index.js │ ├── isLeapYear │ │ └── index.js │ ├── localizableFormat │ │ └── index.js │ ├── relativeTime │ │ └── index.js │ ├── timeZone │ │ ├── 1900-2050.js │ │ ├── 1970-2038.js │ │ ├── 2012-2022.js │ │ ├── custom.js │ │ └── index.js │ └── weekOfYear │ │ └── index.js └── utils.js ├── test ├── __mocks__ │ └── dayjs.js ├── browser.spec.js ├── constructor.test.js ├── display.test.js ├── get-set.test.js ├── index.d.test.ts ├── locale.test.js ├── locale │ └── keys.test.js ├── manipulate.test.js ├── parse.test.js ├── plugin.test.js ├── plugin │ ├── advancedFormat.test.js │ ├── buddhistEra.test.js │ ├── customParseFormat.test.js │ ├── isBetween.test.js │ ├── isLeapYear.test.js │ ├── localizableCustomParseFormat.test.js │ ├── localizableFormat.test.js │ ├── relativeTime.test.js │ ├── timeZone.test.js │ └── weekOfYear.test.js ├── query.test.js ├── utc │ ├── isUTC.test.js │ ├── local.test.js │ ├── utc.test.js │ └── utcOffset.test.js └── utils.test.js ├── tslint.json └── utils └── add-locale-formats.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/README.md -------------------------------------------------------------------------------- /bench/add.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/add.bench.js -------------------------------------------------------------------------------- /bench/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/benchmark.js -------------------------------------------------------------------------------- /bench/clone.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/clone.bench.js -------------------------------------------------------------------------------- /bench/compare.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/compare.bench.js -------------------------------------------------------------------------------- /bench/diff.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/diff.bench.js -------------------------------------------------------------------------------- /bench/endOf.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/endOf.bench.js -------------------------------------------------------------------------------- /bench/format.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/format.bench.js -------------------------------------------------------------------------------- /bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/index.js -------------------------------------------------------------------------------- /bench/parse.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/parse.bench.js -------------------------------------------------------------------------------- /bench/startOf.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/startOf.bench.js -------------------------------------------------------------------------------- /bench/timeZone.bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/bench/timeZone.bench.js -------------------------------------------------------------------------------- /docs/en/API-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/docs/en/API-reference.md -------------------------------------------------------------------------------- /docs/en/I18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/docs/en/I18n.md -------------------------------------------------------------------------------- /docs/en/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/docs/en/Installation.md -------------------------------------------------------------------------------- /docs/en/Plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/docs/en/Plugin.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/index.d.ts -------------------------------------------------------------------------------- /karma.sauce.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/karma.sauce.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/package.json -------------------------------------------------------------------------------- /src/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/constant.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/ar.js -------------------------------------------------------------------------------- /src/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/bg.js -------------------------------------------------------------------------------- /src/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/ca.js -------------------------------------------------------------------------------- /src/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/cs.js -------------------------------------------------------------------------------- /src/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/da.js -------------------------------------------------------------------------------- /src/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/de.js -------------------------------------------------------------------------------- /src/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/el.js -------------------------------------------------------------------------------- /src/locale/es-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/es-es.js -------------------------------------------------------------------------------- /src/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/es.js -------------------------------------------------------------------------------- /src/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/fa.js -------------------------------------------------------------------------------- /src/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/fi.js -------------------------------------------------------------------------------- /src/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/fr.js -------------------------------------------------------------------------------- /src/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/he.js -------------------------------------------------------------------------------- /src/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/hr.js -------------------------------------------------------------------------------- /src/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/hu.js -------------------------------------------------------------------------------- /src/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/id.js -------------------------------------------------------------------------------- /src/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/it.js -------------------------------------------------------------------------------- /src/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/ja.js -------------------------------------------------------------------------------- /src/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/ka.js -------------------------------------------------------------------------------- /src/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/ko.js -------------------------------------------------------------------------------- /src/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/lt.js -------------------------------------------------------------------------------- /src/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/nb.js -------------------------------------------------------------------------------- /src/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/nl.js -------------------------------------------------------------------------------- /src/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/nn.js -------------------------------------------------------------------------------- /src/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/pl.js -------------------------------------------------------------------------------- /src/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/pt-br.js -------------------------------------------------------------------------------- /src/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/pt.js -------------------------------------------------------------------------------- /src/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/ro.js -------------------------------------------------------------------------------- /src/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/ru.js -------------------------------------------------------------------------------- /src/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/sk.js -------------------------------------------------------------------------------- /src/locale/sr-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/sr-cyrl.js -------------------------------------------------------------------------------- /src/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/sr.js -------------------------------------------------------------------------------- /src/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/sv.js -------------------------------------------------------------------------------- /src/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/th.js -------------------------------------------------------------------------------- /src/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/tr.js -------------------------------------------------------------------------------- /src/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/uk.js -------------------------------------------------------------------------------- /src/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/zh-cn.js -------------------------------------------------------------------------------- /src/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/locale/zh-tw.js -------------------------------------------------------------------------------- /src/plugin/advancedFormat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/advancedFormat/index.js -------------------------------------------------------------------------------- /src/plugin/buddhistEra/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/buddhistEra/index.js -------------------------------------------------------------------------------- /src/plugin/customParseFormat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/customParseFormat/index.js -------------------------------------------------------------------------------- /src/plugin/customParseFormat/parseFormattedInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/customParseFormat/parseFormattedInput.js -------------------------------------------------------------------------------- /src/plugin/isBetween/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/isBetween/index.js -------------------------------------------------------------------------------- /src/plugin/isLeapYear/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/isLeapYear/index.js -------------------------------------------------------------------------------- /src/plugin/localizableFormat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/localizableFormat/index.js -------------------------------------------------------------------------------- /src/plugin/relativeTime/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/relativeTime/index.js -------------------------------------------------------------------------------- /src/plugin/timeZone/1900-2050.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/timeZone/1900-2050.js -------------------------------------------------------------------------------- /src/plugin/timeZone/1970-2038.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/timeZone/1970-2038.js -------------------------------------------------------------------------------- /src/plugin/timeZone/2012-2022.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/timeZone/2012-2022.js -------------------------------------------------------------------------------- /src/plugin/timeZone/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/timeZone/custom.js -------------------------------------------------------------------------------- /src/plugin/timeZone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/timeZone/index.js -------------------------------------------------------------------------------- /src/plugin/weekOfYear/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/plugin/weekOfYear/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/__mocks__/dayjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/__mocks__/dayjs.js -------------------------------------------------------------------------------- /test/browser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/browser.spec.js -------------------------------------------------------------------------------- /test/constructor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/constructor.test.js -------------------------------------------------------------------------------- /test/display.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/display.test.js -------------------------------------------------------------------------------- /test/get-set.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/get-set.test.js -------------------------------------------------------------------------------- /test/index.d.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/index.d.test.ts -------------------------------------------------------------------------------- /test/locale.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/locale.test.js -------------------------------------------------------------------------------- /test/locale/keys.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/locale/keys.test.js -------------------------------------------------------------------------------- /test/manipulate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/manipulate.test.js -------------------------------------------------------------------------------- /test/parse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/parse.test.js -------------------------------------------------------------------------------- /test/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin.test.js -------------------------------------------------------------------------------- /test/plugin/advancedFormat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/advancedFormat.test.js -------------------------------------------------------------------------------- /test/plugin/buddhistEra.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/buddhistEra.test.js -------------------------------------------------------------------------------- /test/plugin/customParseFormat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/customParseFormat.test.js -------------------------------------------------------------------------------- /test/plugin/isBetween.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/isBetween.test.js -------------------------------------------------------------------------------- /test/plugin/isLeapYear.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/isLeapYear.test.js -------------------------------------------------------------------------------- /test/plugin/localizableCustomParseFormat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/localizableCustomParseFormat.test.js -------------------------------------------------------------------------------- /test/plugin/localizableFormat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/localizableFormat.test.js -------------------------------------------------------------------------------- /test/plugin/relativeTime.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/relativeTime.test.js -------------------------------------------------------------------------------- /test/plugin/timeZone.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/timeZone.test.js -------------------------------------------------------------------------------- /test/plugin/weekOfYear.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/plugin/weekOfYear.test.js -------------------------------------------------------------------------------- /test/query.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/query.test.js -------------------------------------------------------------------------------- /test/utc/isUTC.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/utc/isUTC.test.js -------------------------------------------------------------------------------- /test/utc/local.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/utc/local.test.js -------------------------------------------------------------------------------- /test/utc/utc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/utc/utc.test.js -------------------------------------------------------------------------------- /test/utc/utcOffset.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/utc/utcOffset.test.js -------------------------------------------------------------------------------- /test/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/test/utils.test.js -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/tslint.json -------------------------------------------------------------------------------- /utils/add-locale-formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prantlf/dayjs/HEAD/utils/add-locale-formats.js --------------------------------------------------------------------------------