Skip to content

Instantly share code, notes, and snippets.

View mizhon's full-sized avatar
🫥

mister.z mizhon

🫥
  • China
View GitHub Profile
@mizhon
mizhon / .eslintrc.js
Created May 25, 2020 08:22 — forked from adrianhall/.eslintrc.js
A sample .eslintrc file
var OFF = 0, WARN = 1, ERROR = 2;
module.exports = exports = {
"env": {
"es6": true
},
"ecmaFeatures": {
// env=es6 doesn't include modules, which we are using
"modules": true
@mizhon
mizhon / introrx.md
Created May 20, 2020 08:18 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@mizhon
mizhon / analytics.js
Created May 20, 2020 03:27 — forked from zmmbreeze/analytics.js
GA的源码 analytics.js
(function() {
/**
* 记录方法使用情况的类
* @param {Array.<boolean>} umMap 初始的使用情况
*/
var UsageManager = function(umMap) {
this.umMap = umMap || [];
};
/**
* 记录新的使用情况