├── .babelrc ├── .eslintignore ├── .flowconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── README.md ├── bin └── publish_docs ├── book.json ├── circle.yml ├── docs ├── SUMMARY.md ├── concepts.md └── functions │ ├── add.md │ ├── clone.md │ ├── convert-to.md │ ├── diff.md │ ├── equals.md │ ├── format.md │ ├── fromTime.md │ ├── get.md │ ├── index.md │ ├── is-leap-year.md │ ├── is-valid.md │ ├── max.md │ ├── min.md │ ├── of.md │ ├── parse.md │ ├── set.md │ ├── sub.md │ └── unix-time.md ├── example └── index.js ├── package.json ├── src ├── _spec │ ├── add.js │ ├── convertTo.js │ ├── diff.js │ ├── equals.js │ ├── format.js │ ├── fromTime.js │ ├── get.js │ ├── isLeapYear.js │ ├── isValid.js │ ├── max.js │ ├── min.js │ ├── of.js │ ├── parse.js │ ├── set.js │ ├── sub.js │ └── unixTime.js ├── add.js ├── convertTo.js ├── diff.js ├── equals.js ├── format.js ├── fromTime.js ├── get.js ├── helpers │ ├── constants.js │ └── util.js ├── index.js ├── isLeapYear.js ├── isValid.js ├── max.js ├── min.js ├── of.js ├── parse.js ├── set.js ├── sub.js └── unixTime.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules 3 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | build/ 4 | _book/ 5 | coverage/ 6 | sandbox.js 7 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/README.md -------------------------------------------------------------------------------- /bin/publish_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/bin/publish_docs -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/book.json -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/concepts.md -------------------------------------------------------------------------------- /docs/functions/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/add.md -------------------------------------------------------------------------------- /docs/functions/clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/clone.md -------------------------------------------------------------------------------- /docs/functions/convert-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/convert-to.md -------------------------------------------------------------------------------- /docs/functions/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/diff.md -------------------------------------------------------------------------------- /docs/functions/equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/equals.md -------------------------------------------------------------------------------- /docs/functions/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/format.md -------------------------------------------------------------------------------- /docs/functions/fromTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/fromTime.md -------------------------------------------------------------------------------- /docs/functions/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/get.md -------------------------------------------------------------------------------- /docs/functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/index.md -------------------------------------------------------------------------------- /docs/functions/is-leap-year.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/is-leap-year.md -------------------------------------------------------------------------------- /docs/functions/is-valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/is-valid.md -------------------------------------------------------------------------------- /docs/functions/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/max.md -------------------------------------------------------------------------------- /docs/functions/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/min.md -------------------------------------------------------------------------------- /docs/functions/of.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/of.md -------------------------------------------------------------------------------- /docs/functions/parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/parse.md -------------------------------------------------------------------------------- /docs/functions/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/set.md -------------------------------------------------------------------------------- /docs/functions/sub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/sub.md -------------------------------------------------------------------------------- /docs/functions/unix-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/docs/functions/unix-time.md -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/example/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/package.json -------------------------------------------------------------------------------- /src/_spec/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/add.js -------------------------------------------------------------------------------- /src/_spec/convertTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/convertTo.js -------------------------------------------------------------------------------- /src/_spec/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/diff.js -------------------------------------------------------------------------------- /src/_spec/equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/equals.js -------------------------------------------------------------------------------- /src/_spec/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/format.js -------------------------------------------------------------------------------- /src/_spec/fromTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/fromTime.js -------------------------------------------------------------------------------- /src/_spec/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/get.js -------------------------------------------------------------------------------- /src/_spec/isLeapYear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/isLeapYear.js -------------------------------------------------------------------------------- /src/_spec/isValid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/isValid.js -------------------------------------------------------------------------------- /src/_spec/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/max.js -------------------------------------------------------------------------------- /src/_spec/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/min.js -------------------------------------------------------------------------------- /src/_spec/of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/of.js -------------------------------------------------------------------------------- /src/_spec/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/parse.js -------------------------------------------------------------------------------- /src/_spec/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/set.js -------------------------------------------------------------------------------- /src/_spec/sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/sub.js -------------------------------------------------------------------------------- /src/_spec/unixTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/_spec/unixTime.js -------------------------------------------------------------------------------- /src/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/add.js -------------------------------------------------------------------------------- /src/convertTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/convertTo.js -------------------------------------------------------------------------------- /src/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/diff.js -------------------------------------------------------------------------------- /src/equals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/equals.js -------------------------------------------------------------------------------- /src/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/format.js -------------------------------------------------------------------------------- /src/fromTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/fromTime.js -------------------------------------------------------------------------------- /src/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/get.js -------------------------------------------------------------------------------- /src/helpers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/helpers/constants.js -------------------------------------------------------------------------------- /src/helpers/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/helpers/util.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/index.js -------------------------------------------------------------------------------- /src/isLeapYear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/isLeapYear.js -------------------------------------------------------------------------------- /src/isValid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/isValid.js -------------------------------------------------------------------------------- /src/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/max.js -------------------------------------------------------------------------------- /src/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/min.js -------------------------------------------------------------------------------- /src/of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/of.js -------------------------------------------------------------------------------- /src/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/parse.js -------------------------------------------------------------------------------- /src/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/set.js -------------------------------------------------------------------------------- /src/sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/sub.js -------------------------------------------------------------------------------- /src/unixTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/src/unixTime.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cullophid/date-fp/HEAD/yarn.lock --------------------------------------------------------------------------------