LiveScript
LiveScript copied to clipboard
Livescript 1.3.1REPL bug
type in 'lsc' commands
LiveScript 1.3.1 - use 'lsc --help' for more information
ls> "".constructor == String
true
ls> e = new Error
[Error]
ls> "".constructor == String
false
ls>
Doesn't even need the new Error
:
ls> "".constructor == String
true
ls> "".constructor == String
false
Seems to be fixed in 1.4.0.