Skip to content

Instantly share code, notes, and snippets.

@ZackFox
Last active June 3, 2019 12:18
Show Gist options
  • Save ZackFox/fe47f336c46c7341b69d169107d7e70c to your computer and use it in GitHub Desktop.
Save ZackFox/fe47f336c46c7341b69d169107d7e70c to your computer and use it in GitHub Desktop.
function Obj (){
const _ins = this;
const _proto = Obj.prototype;
Obj = function(){
return _ins;
}
Obj.prototype = _proto
Obj.prototype.constructor = Obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment