Created
July 7, 2011 17:13
-
-
Save DanBUK/1070014 to your computer and use it in GitHub Desktop.
nodester issue #122 example
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
> var o = /^.*$/; | |
> o | |
/^.*$/ | |
> o.concat | |
> o.concat('asdf') | |
TypeError: Object /^.*$/ has no method 'concat' | |
at [object Context]:1:3 | |
at Interface.<anonymous> (repl.js:171:22) | |
at Interface.emit (events.js:64:17) | |
at Interface._onLine (readline.js:153:10) | |
at Interface._line (readline.js:408:8) | |
at Interface._ttyWrite (readline.js:585:14) | |
at ReadStream.<anonymous> (readline.js:73:12) | |
at ReadStream.emit (events.js:81:20) | |
at ReadStream._emitKey (tty_posix.js:307:10) | |
at ReadStream.onData (tty_posix.js:70:12) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment