Skip to content

Instantly share code, notes, and snippets.

@savokiss
Created November 17, 2017 08:15
Show Gist options
  • Save savokiss/2f096c983d96de092b9695fb4b479f7a to your computer and use it in GitHub Desktop.
Save savokiss/2f096c983d96de092b9695fb4b479f7a to your computer and use it in GitHub Desktop.
cube-ui date.js
export const DAY_TIMESTAMP = 60 * 60 * 24 * 1000
export const HOUR_TIMESTAMP = 60 * 60 * 1000
export const MINUTE_TIMESTAMP = 60 * 1000
export function formatDate(date, fmt) {
const o = {
'M+': date.getMonth() + 1,
'd+': date.getDate(),
'h+': date.getHours(),
'm+': date.getMinutes(),
's+': date.getSeconds(),
'q+': Math.floor((date.getMonth() + 3) / 3),
'S': date.getMilliseconds()
}
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
}
for (const k in o) {
if (new RegExp('(' + k + ')').test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
}
}
return fmt
}
export function getZeroDate(date) {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
return new Date(year + '/' + month + '/' + day + ' 00:00:00')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment