add hw2
This commit is contained in:
		
							
								
								
									
										22
									
								
								node_modules/lodash-es/flatten.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								node_modules/lodash-es/flatten.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| import baseFlatten from './_baseFlatten.js'; | ||||
|  | ||||
| /** | ||||
|  * Flattens `array` a single level deep. | ||||
|  * | ||||
|  * @static | ||||
|  * @memberOf _ | ||||
|  * @since 0.1.0 | ||||
|  * @category Array | ||||
|  * @param {Array} array The array to flatten. | ||||
|  * @returns {Array} Returns the new flattened array. | ||||
|  * @example | ||||
|  * | ||||
|  * _.flatten([1, [2, [3, [4]], 5]]); | ||||
|  * // => [1, 2, [3, [4]], 5] | ||||
|  */ | ||||
| function flatten(array) { | ||||
|   var length = array == null ? 0 : array.length; | ||||
|   return length ? baseFlatten(array, 1) : []; | ||||
| } | ||||
|  | ||||
| export default flatten; | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik