chore(binom) rm " "

This commit is contained in:
coderaiser 2015-08-26 04:50:52 -04:00
parent 53b08abc57
commit dee5abc100

View file

@ -7,10 +7,10 @@
var ret;
if (!Array.isArray(array))
throw(Error('array should be array!'));
throw Error('array should be array!');
if (typeof name !== 'string')
throw(Error('name should be string!'));
throw Error('name should be string!');
array.some(function(item) {
var is = item.name === name,