Skip to content

Instantly share code, notes, and snippets.

@nicholasf
Last active August 29, 2015 14:05
Show Gist options
  • Save nicholasf/bb2e7b8bfea1c55981f2 to your computer and use it in GitHub Desktop.
Save nicholasf/bb2e7b8bfea1c55981f2 to your computer and use it in GitHub Desktop.
> 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