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.
		
		
		
		
		
			
	
	
		
			
				
				
					
						
						
							| 
								
							 | 
							
								/**
							 | 
						
						
						
							| 
								
							 | 
							
								 * Checks if `value` is `null`.
							 | 
						
						
						
							| 
								
							 | 
							
								 *
							 | 
						
						
						
							| 
								
							 | 
							
								 * @static
							 | 
						
						
						
							| 
								
							 | 
							
								 * @memberOf _
							 | 
						
						
						
							| 
								
							 | 
							
								 * @since 0.1.0
							 | 
						
						
						
							| 
								
							 | 
							
								 * @category Lang
							 | 
						
						
						
							| 
								
							 | 
							
								 * @param {*} value The value to check.
							 | 
						
						
						
							| 
								
							 | 
							
								 * @returns {boolean} Returns `true` if `value` is `null`, else `false`.
							 | 
						
						
						
							| 
								
							 | 
							
								 * @example
							 | 
						
						
						
							| 
								
							 | 
							
								 *
							 | 
						
						
						
							| 
								
							 | 
							
								 * _.isNull(null);
							 | 
						
						
						
							| 
								
							 | 
							
								 * // => true
							 | 
						
						
						
							| 
								
							 | 
							
								 *
							 | 
						
						
						
							| 
								
							 | 
							
								 * _.isNull(void 0);
							 | 
						
						
						
							| 
								
							 | 
							
								 * // => false
							 | 
						
						
						
							| 
								
							 | 
							
								 */
							 | 
						
						
						
							| 
								
							 | 
							
								function isNull(value) {
							 | 
						
						
						
							| 
								
							 | 
							
								  return value === null;
							 | 
						
						
						
							| 
								
							 | 
							
								}
							 | 
						
						
						
							| 
								
							 | 
							
								
							 | 
						
						
						
							| 
								
							 | 
							
								module.exports = isNull;
							 |