Skip to content

Instantly share code, notes, and snippets.

@yhahn
Created March 23, 2012 21:15
Show Gist options
  • Save yhahn/2175121 to your computer and use it in GitHub Desktop.
Save yhahn/2175121 to your computer and use it in GitHub Desktop.
> 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