Skip to content

Instantly share code, notes, and snippets.

View kiss758's full-sized avatar
😪
IT's boring

Mr.C kiss758

😪
IT's boring
View GitHub Profile
@webkong
webkong / formatDate.js
Last active May 3, 2024 16:39
[JavaScript]snippets for JavaScript #JavaScript
/**
* @description 将时间转换成指定格式
* @param {String|Number} time
* @param {String} fmt
*/
export function timesToDate(time, fmt) {
fmt = fmt || 'yyyy-MM-dd';
time = anyTotime(time);
let date = new Date(time);
if (/(y+)/.test(fmt)) {