Last active
August 29, 2015 14:05
-
-
Save nicholasf/bb2e7b8bfea1c55981f2 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
> Object.create(undefined) | |
TypeError: Object prototype may only be an Object or null | |
at Function.create (native) | |
at repl:1:9 | |
at REPLServer.self.eval (repl.js:110:21) | |
at Interface.<anonymous> (repl.js:239:12) | |
at Interface.EventEmitter.emit (events.js:95:17) | |
at Interface._onLine (readline.js:202:10) | |
at Interface._line (readline.js:531:8) | |
at Interface._ttyWrite (readline.js:760:14) | |
at ReadStream.onkeypress (readline.js:99:10) | |
at ReadStream.EventEmitter.emit (events.js:98:17) | |
> Object.create(null) | |
{} | |
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment