Skip to content

Instantly share code, notes, and snippets.

@vivekdarji
vivekdarji / Jet plane BHT
Created July 29, 2017 17:50
Jet Plane BHT
var doodle = (function() {
Function.prototype.bind = Function.prototype.bind || function(fixThis) {
var func = this
return function() {
return func.apply(fixThis, arguments)
}
}
var DEBUG = false;
var _l = function(obj) {
DEBUG && console && console.log && console.log(obj)