├── .gitignore ├── .npmignore ├── CHANGELOG.txt ├── GPL-LICENSE.txt ├── MIT-LICENSE.txt ├── Makefile ├── README.md ├── bower.json ├── package.json ├── src ├── extras.js └── xdate.js ├── test ├── adding.js ├── constructors.js ├── diffing.js ├── formatting-extras.js ├── formatting.js ├── getters.js ├── nothing.html ├── old.js ├── parsing.js ├── setters.js ├── test.html ├── test.js ├── utc-mode.js └── utilities.js └── version.txt /.gitignore: -------------------------------------------------------------------------------- 1 | build/xdate*.js 2 | dist 3 | docs 4 | bower_components 5 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/GPL-LICENSE.txt -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/package.json -------------------------------------------------------------------------------- /src/extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/src/extras.js -------------------------------------------------------------------------------- /src/xdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/src/xdate.js -------------------------------------------------------------------------------- /test/adding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/adding.js -------------------------------------------------------------------------------- /test/constructors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/constructors.js -------------------------------------------------------------------------------- /test/diffing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/diffing.js -------------------------------------------------------------------------------- /test/formatting-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/formatting-extras.js -------------------------------------------------------------------------------- /test/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/formatting.js -------------------------------------------------------------------------------- /test/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/getters.js -------------------------------------------------------------------------------- /test/nothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/nothing.html -------------------------------------------------------------------------------- /test/old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/old.js -------------------------------------------------------------------------------- /test/parsing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/parsing.js -------------------------------------------------------------------------------- /test/setters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/setters.js -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/test.js -------------------------------------------------------------------------------- /test/utc-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/utc-mode.js -------------------------------------------------------------------------------- /test/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshaw/xdate/HEAD/test/utilities.js -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.8.3 --------------------------------------------------------------------------------