Created
February 12, 2014 01:01
-
-
Save ericelliott/8947851 to your computer and use it in GitHub Desktop.
wtf node?
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
$ node | |
> var _ = require('underscore-node'); | |
undefined | |
> _ | |
undefined | |
> var stampit = require('stampit'); | |
undefined | |
> stampit | |
{ [Function: stampit] | |
compose: [Function: compose], | |
extend: [Function: mixIn], | |
mixIn: [Function: mixIn], | |
convertConstructor: [Function: convertConstructor] } | |
> _ | |
{ [Function: stampit] | |
compose: [Function: compose], | |
extend: [Function: mixIn], | |
mixIn: [Function: mixIn], | |
convertConstructor: [Function: convertConstructor] } | |
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
_ is a special variable in the Node REPL which refers to the value of the last assignment.