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.

_baseIsMap.js 478B

123456789101112131415161718
  1. var getTag = require('./_getTag'),
  2. isObjectLike = require('./isObjectLike');
  3. /** `Object#toString` result references. */
  4. var mapTag = '[object Map]';
  5. /**
  6. * The base implementation of `_.isMap` without Node.js optimizations.
  7. *
  8. * @private
  9. * @param {*} value The value to check.
  10. * @returns {boolean} Returns `true` if `value` is a map, else `false`.
  11. */
  12. function baseIsMap(value) {
  13. return isObjectLike(value) && getTag(value) == mapTag;
  14. }
  15. module.exports = baseIsMap;