add hw2
This commit is contained in:
		
							
								
								
									
										30
									
								
								node_modules/ramda/es/lt.js
									
									
									
										generated
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										30
									
								
								node_modules/ramda/es/lt.js
									
									
									
										generated
									
									
										vendored
									
									
										Executable file
									
								
							| @@ -0,0 +1,30 @@ | ||||
| import _curry2 from "./internal/_curry2.js"; | ||||
| /** | ||||
|  * Returns `true` if the first argument is less than the second; `false` | ||||
|  * otherwise. | ||||
|  * | ||||
|  * @func | ||||
|  * @memberOf R | ||||
|  * @since v0.1.0 | ||||
|  * @category Relation | ||||
|  * @sig Ord a => a -> a -> Boolean | ||||
|  * @param {*} a | ||||
|  * @param {*} b | ||||
|  * @return {Boolean} | ||||
|  * @see R.gt | ||||
|  * @example | ||||
|  * | ||||
|  *      R.lt(2, 1); //=> false | ||||
|  *      R.lt(2, 2); //=> false | ||||
|  *      R.lt(2, 3); //=> true | ||||
|  *      R.lt('a', 'z'); //=> true | ||||
|  *      R.lt('z', 'a'); //=> false | ||||
|  */ | ||||
|  | ||||
| var lt = | ||||
| /*#__PURE__*/ | ||||
| _curry2(function lt(a, b) { | ||||
|   return a < b; | ||||
| }); | ||||
|  | ||||
| export default lt; | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik