├── .gitignore ├── .tool-versions ├── README.md ├── api ├── _utils.ts ├── current-date.ts ├── current-hour.ts ├── current-month.ts └── current-year.ts └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | node_modules 3 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.12.1 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/current-time-api/HEAD/README.md -------------------------------------------------------------------------------- /api/_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/current-time-api/HEAD/api/_utils.ts -------------------------------------------------------------------------------- /api/current-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/current-time-api/HEAD/api/current-date.ts -------------------------------------------------------------------------------- /api/current-hour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/current-time-api/HEAD/api/current-hour.ts -------------------------------------------------------------------------------- /api/current-month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/current-time-api/HEAD/api/current-month.ts -------------------------------------------------------------------------------- /api/current-year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/current-time-api/HEAD/api/current-year.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/current-time-api/HEAD/package.json --------------------------------------------------------------------------------