index.js 249 B

1234567891011
  1. import { getCurrentTimeISO } from './core.js';
  2. import { success } from '../shared/utils.js';
  3. /**
  4. * Time API Handler.
  5. * @returns {Object}
  6. */
  7. export const getTimeHandler = () => {
  8. const time = getCurrentTimeISO();
  9. return success({ time });
  10. };