├── .gitignore ├── .travis.yml ├── README.md ├── TimeAgo.js ├── __tests__ └── TimeAgo.test.js ├── babel.config.js ├── index.d.ts ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/README.md -------------------------------------------------------------------------------- /TimeAgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/TimeAgo.js -------------------------------------------------------------------------------- /__tests__/TimeAgo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/__tests__/TimeAgo.test.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TylerLH/react-native-timeago/HEAD/yarn.lock --------------------------------------------------------------------------------