nowDay2str.mjs

  1. import ot from 'dayjs'
  2. import isfun from './isfun.mjs'
  3. /**
  4. * 取得目前至日時間
  5. *
  6. * Unit Test: {@link https://github.com/yuda-lyu/wsemi/blob/master/test/nowDay2str.test.mjs Github}
  7. * @memberOf wsemi
  8. * @returns {String} 回傳目前至日時間字串
  9. * @example
  10. *
  11. * console.log(nowDay2str())
  12. * // => dayjs().format('YYYY-MM-DD') //use dayjs or moment
  13. *
  14. */
  15. function nowDay2str() {
  16. //check
  17. if (!isfun(ot)) {
  18. throw new Error(`invalid dayjs`)
  19. }
  20. let d = ot()
  21. let r = d.format('YYYY-MM-DD')
  22. return r
  23. }
  24. export default nowDay2str