add hw2
This commit is contained in:
		
							
								
								
									
										33
									
								
								node_modules/lodash-es/_createCaseFirst.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								node_modules/lodash-es/_createCaseFirst.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,33 @@ | ||||
| import castSlice from './_castSlice.js'; | ||||
| import hasUnicode from './_hasUnicode.js'; | ||||
| import stringToArray from './_stringToArray.js'; | ||||
| import toString from './toString.js'; | ||||
|  | ||||
| /** | ||||
|  * Creates a function like `_.lowerFirst`. | ||||
|  * | ||||
|  * @private | ||||
|  * @param {string} methodName The name of the `String` case method to use. | ||||
|  * @returns {Function} Returns the new case function. | ||||
|  */ | ||||
| function createCaseFirst(methodName) { | ||||
|   return function(string) { | ||||
|     string = toString(string); | ||||
|  | ||||
|     var strSymbols = hasUnicode(string) | ||||
|       ? stringToArray(string) | ||||
|       : undefined; | ||||
|  | ||||
|     var chr = strSymbols | ||||
|       ? strSymbols[0] | ||||
|       : string.charAt(0); | ||||
|  | ||||
|     var trailing = strSymbols | ||||
|       ? castSlice(strSymbols, 1).join('') | ||||
|       : string.slice(1); | ||||
|  | ||||
|     return chr[methodName]() + trailing; | ||||
|   }; | ||||
| } | ||||
|  | ||||
| export default createCaseFirst; | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik