An in progress collection of Underscore.js mixins
chunkize _.chunkize(array, chunkSize)
Splits an array into custom-sized chunks without affecting the source array
_.chunkize([1,2,3,4,5], 2)
=> [[1,2], [3,4], [5]]
matchesWildcard _.matchesWildcard(testString, wildcardPattern)
Returns true if testString matches the wildcard pattern
_.matchesWildcard('http://www.google.com/something', '*.google.com/*')
=> true