source: imaps-frontend/node_modules/lodash/_baseIsMap.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 478 bytes
Line 
1var getTag = require('./_getTag'),
2 isObjectLike = require('./isObjectLike');
3
4/** `Object#toString` result references. */
5var mapTag = '[object Map]';
6
7/**
8 * The base implementation of `_.isMap` without Node.js optimizations.
9 *
10 * @private
11 * @param {*} value The value to check.
12 * @returns {boolean} Returns `true` if `value` is a map, else `false`.
13 */
14function baseIsMap(value) {
15 return isObjectLike(value) && getTag(value) == mapTag;
16}
17
18module.exports = baseIsMap;
Note: See TracBrowser for help on using the repository browser.