├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── number.timeago.js ├── package.json └── test └── number.timeago.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falm/number-timeago/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falm/number-timeago/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falm/number-timeago/HEAD/README.md -------------------------------------------------------------------------------- /number.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falm/number-timeago/HEAD/number.timeago.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falm/number-timeago/HEAD/package.json -------------------------------------------------------------------------------- /test/number.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falm/number-timeago/HEAD/test/number.timeago.js --------------------------------------------------------------------------------