any.js

  1. /**
  2. * Returns true if at least on of the items in the enumerable match the predicate
  3. *
  4. * @function any
  5. * @description Returns true if at least on of the items in the enumerable match the predicate
  6. * @since v1.0.2
  7. * @sig (TODO)
  8. * @param {Function} cb
  9. * @param {Iterable} a
  10. * @return {Boolean}
  11. **/
  12. import curry from './curry'
  13. export default curry(function any (cb, a) {
  14. let res = false
  15. for (let i in a) {
  16. if (cb(a[i])) {
  17. res = true
  18. break
  19. }
  20. }
  21. return res
  22. })