Skip to content

Instantly share code, notes, and snippets.

@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 / deep_merge.js
Last active February 5, 2020 07:44
deep_merge
'use strict';
function deepMerge(){
let args = [].slice.call(arguments);
let target = args.shift();
let sources = args;
if(sources.length == 0){
return target;
}
else {
@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