Created
November 17, 2017 08:15
-
-
Save savokiss/2f096c983d96de092b9695fb4b479f7a to your computer and use it in GitHub Desktop.
cube-ui date.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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