Skip to content

Instantly share code, notes, and snippets.

@yiyizym
yiyizym / flatten.js
Created December 26, 2018 03:01
flatten array
function flatten(original){
let result = [], temp, child;
if(Array.isArray(original)){
temp = original.slice(0)
} else {
temp = [original]
}
while(temp.length){
if((child = temp.pop()) && child.pop){
@yiyizym
yiyizym / format_time.js
Created January 25, 2019 07:54
javascript time format
// 对Date的扩展,将 Date 转化为指定格式的String
// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
// 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
// 例子:
// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
// (new Date()).Format("yyyy-M-d h:m:s.S") ==> 2006-7-2 8:9:4.18
Date.prototype.Format = function (fmt) {
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
@yiyizym
yiyizym / commonjs_webpack_output.js
Last active July 14, 2020 08:59
webpack modules output
// es6 modules 打包结果大体一样,细节不同
// app.js(entry)
var c = require('./c')
console.log(c)
module.exports = {
a: '我是a'
}
// c.js