source: trip-planner-front/node_modules/lodash/isMap.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 613 bytes
Line 
1var baseIsMap = require('./_baseIsMap'),
2 baseUnary = require('./_baseUnary'),
3 nodeUtil = require('./_nodeUtil');
4
5/* Node.js helper references. */
6var nodeIsMap = nodeUtil && nodeUtil.isMap;
7
8/**
9 * Checks if `value` is classified as a `Map` object.
10 *
11 * @static
12 * @memberOf _
13 * @since 4.3.0
14 * @category Lang
15 * @param {*} value The value to check.
16 * @returns {boolean} Returns `true` if `value` is a map, else `false`.
17 * @example
18 *
19 * _.isMap(new Map);
20 * // => true
21 *
22 * _.isMap(new WeakMap);
23 * // => false
24 */
25var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;
26
27module.exports = isMap;
Note: See TracBrowser for help on using the repository browser.