mirror of
				https://github.com/skishore/makemeahanzi.git
				synced 2025-11-01 03:45:51 +08:00 
			
		
		
		
	Add shrink-wrapped stroke_caps library
This commit is contained in:
		
							
								
								
									
										27
									
								
								lib/stroke_caps/node_modules/lodash/isMap.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								lib/stroke_caps/node_modules/lodash/isMap.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,27 @@ | ||||
| var baseIsMap = require('./_baseIsMap'), | ||||
|     baseUnary = require('./_baseUnary'), | ||||
|     nodeUtil = require('./_nodeUtil'); | ||||
|  | ||||
| /* Node.js helper references. */ | ||||
| var nodeIsMap = nodeUtil && nodeUtil.isMap; | ||||
|  | ||||
| /** | ||||
|  * Checks if `value` is classified as a `Map` object. | ||||
|  * | ||||
|  * @static | ||||
|  * @memberOf _ | ||||
|  * @since 4.3.0 | ||||
|  * @category Lang | ||||
|  * @param {*} value The value to check. | ||||
|  * @returns {boolean} Returns `true` if `value` is a map, else `false`. | ||||
|  * @example | ||||
|  * | ||||
|  * _.isMap(new Map); | ||||
|  * // => true | ||||
|  * | ||||
|  * _.isMap(new WeakMap); | ||||
|  * // => false | ||||
|  */ | ||||
| var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; | ||||
|  | ||||
| module.exports = isMap; | ||||
		Reference in New Issue
	
	Block a user
	 Shaunak Kishore
					Shaunak Kishore