Created
March 15, 2013 14:51
-
-
Save hokaccha/5170378 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Foo() { | |
if (!(this instanceof Foo)) { | |
throw new Error('called without new'); | |
} | |
// initialize | |
} | |
var foo = Foo(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment