Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

isArrayLike.js 830B

123456789101112131415161718192021222324252627282930313233
  1. var isFunction = require('./isFunction'),
  2. isLength = require('./isLength');
  3. /**
  4. * Checks if `value` is array-like. A value is considered array-like if it's
  5. * not a function and has a `value.length` that's an integer greater than or
  6. * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
  7. *
  8. * @static
  9. * @memberOf _
  10. * @since 4.0.0
  11. * @category Lang
  12. * @param {*} value The value to check.
  13. * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
  14. * @example
  15. *
  16. * _.isArrayLike([1, 2, 3]);
  17. * // => true
  18. *
  19. * _.isArrayLike(document.body.children);
  20. * // => true
  21. *
  22. * _.isArrayLike('abc');
  23. * // => true
  24. *
  25. * _.isArrayLike(_.noop);
  26. * // => false
  27. */
  28. function isArrayLike(value) {
  29. return value != null && isLength(value.length) && !isFunction(value);
  30. }
  31. module.exports = isArrayLike;