This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am yongxu on github. | |
* I am renyongxu (https://keybase.io/renyongxu) on keybase. | |
* I have a public key ASD2FZRW74P6V6ZcHIAWbq4gYUoeRZytyz7zir6L0Lj5Fwo | |
To claim this, I am signing this object: |
This file contains 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
{ | |
"parser": "babel-eslint", | |
"plugins": ["react"], | |
"env": { | |
"es6": true, | |
"browser": true, | |
"node": true, | |
"mocha": true | |
}, | |
"rules": { |
This file contains 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
http://www.mpi-sws.org/~rossberg/sml-vs-ocaml.html |
This file contains 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
(function(){ | |
var attachEvent = document.attachEvent; | |
var isIE = navigator.userAgent.match(/Trident/); | |
console.log(isIE); | |
var requestFrame = (function(){ | |
var raf = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || | |
function(fn){ return window.setTimeout(fn, 20); }; | |
return function(fn){ return raf(fn); }; | |
})(); | |