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.
		
		
		
		
		
			
		
			
				
					31 lines
				
				809 B
			
		
		
			
		
	
	
					31 lines
				
				809 B
			| 
											2 years ago
										 | /** | ||
|  |  * lodash 3.0.1 (Custom Build) <https://lodash.com/>
 | ||
|  |  * Build: `lodash modern modularize exports="npm" -o ./` | ||
|  |  * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
 | ||
|  |  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
 | ||
|  |  * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors | ||
|  |  * Available under MIT license <https://lodash.com/license>
 | ||
|  |  */ | ||
|  | 
 | ||
|  | /** | ||
|  |  * Checks if `value` is `undefined`. | ||
|  |  * | ||
|  |  * @static | ||
|  |  * @memberOf _ | ||
|  |  * @category Lang | ||
|  |  * @param {*} value The value to check. | ||
|  |  * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. | ||
|  |  * @example | ||
|  |  * | ||
|  |  * _.isUndefined(void 0); | ||
|  |  * // => true
 | ||
|  |  * | ||
|  |  * _.isUndefined(null); | ||
|  |  * // => false
 | ||
|  |  */ | ||
|  | function isUndefined(value) { | ||
|  |   return value === undefined; | ||
|  | } | ||
|  | 
 | ||
|  | module.exports = isUndefined; |