Created
March 23, 2012 21:15
-
-
Save yhahn/2175121 to your computer and use it in GitHub Desktop.
This file contains 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 und = require('underscore'); | |
> console.warn(und(['foobar']).min(function(o) { return Infinity })); | |
undefined | |
> console.warn(und(['foobar']).min(function(o) { return 1e20 })); | |
foobar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment