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:
		
							
								
								
									
										18
									
								
								lib/stroke_caps/node_modules/lodash/_baseIsRegExp.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								lib/stroke_caps/node_modules/lodash/_baseIsRegExp.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,18 @@ | ||||
| var baseGetTag = require('./_baseGetTag'), | ||||
|     isObjectLike = require('./isObjectLike'); | ||||
|  | ||||
| /** `Object#toString` result references. */ | ||||
| var regexpTag = '[object RegExp]'; | ||||
|  | ||||
| /** | ||||
|  * The base implementation of `_.isRegExp` without Node.js optimizations. | ||||
|  * | ||||
|  * @private | ||||
|  * @param {*} value The value to check. | ||||
|  * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. | ||||
|  */ | ||||
| function baseIsRegExp(value) { | ||||
|   return isObjectLike(value) && baseGetTag(value) == regexpTag; | ||||
| } | ||||
|  | ||||
| module.exports = baseIsRegExp; | ||||
		Reference in New Issue
	
	Block a user
	 Shaunak Kishore
					Shaunak Kishore