mirror of
				https://github.com/taixingyiji/openit.git
				synced 2025-11-04 04:23:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			381 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			381 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var isArrayLikeObject = require('./isArrayLikeObject');
 | 
						|
 | 
						|
/**
 | 
						|
 * Casts `value` to an empty array if it's not an array like object.
 | 
						|
 *
 | 
						|
 * @private
 | 
						|
 * @param {*} value The value to inspect.
 | 
						|
 * @returns {Array|Object} Returns the cast array-like object.
 | 
						|
 */
 | 
						|
function castArrayLikeObject(value) {
 | 
						|
  return isArrayLikeObject(value) ? value : [];
 | 
						|
}
 | 
						|
 | 
						|
module.exports = castArrayLikeObject;
 |