- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
'use strict';
|
|
|
|
module.exports = function some(array, predicate) {
|
|
for (var i = 0; i < array.length; i += 1) {
|
|
if (predicate(array[i], i, array)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|