File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 "is-promise" : " isPromise" ,
1212 "is-set" : " isSet" ,
1313 "is-string" : " isString" ,
14- "is-truthy" : " isTruthy" ,
15- "is-positive" : " isPositive" ,
16- "is-negative" : " isNegative"
14+ "is-truthy" : " isTruthy"
1715}
Original file line number Diff line number Diff line change 33 "divide" : " divide" ,
44 "fallback-number" : " fallbackNumber" ,
55 "is-in-range" : " isInRange" ,
6+ "is-negative" : " isNegative" ,
7+ "is-positive" : " isPositive" ,
68 "percent" : " percent" ,
79 "random-int" : " randomInt" ,
810 "to-decimal" : " toDecimal"
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ function isNegative(n: number): boolean {};
1717### Examples
1818
1919``` typescript copy
20- isNegative (- 0.1 ) // true
21- isNegative (- 1 ) // true
22- isNegative (- 10 ) // true
23- isNegative (1 ) // false
24- isNegative (0 ) // false
20+ isNegative (- 0.1 ) // true
21+ isNegative (- 1 ) // true
22+ isNegative (- 10 ) // true
23+ isNegative (1 ) // false
24+ isNegative (0 ) // false
2525```
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ function isPositive(n: number): boolean {};
1717### Examples
1818
1919``` typescript copy
20- isPositive (0.1 ) // true
21- isPositive (1 ) // true
22- isPositive (10 ) // true
23- isPositive (- 1 ) // false
24- isPositive (0 ) // false
20+ isPositive (0.1 ) // true
21+ isPositive (1 ) // true
22+ isPositive (10 ) // true
23+ isPositive (- 1 ) // false
24+ isPositive (0 ) // false
2525```
Original file line number Diff line number Diff line change @@ -3,12 +3,10 @@ export { isEmptyObject } from './isEmptyObject.ts';
33export { isFunction } from './isFunction.ts' ;
44export { isIterable } from './isIterable.ts' ;
55export { isMap } from './isMap.ts' ;
6- export { isNegative } from './isNegative.ts' ;
76export { isNotNull } from './isNotNull.ts' ;
87export { isNull } from './isNull.ts' ;
98export { isObject } from './isObject.ts' ;
109export { isPlainObject } from './isPlainObject.ts' ;
11- export { isPositive } from './isPositive.ts' ;
1210export { isPromise } from './isPromise.ts' ;
1311export { isSet } from './isSet.ts' ;
1412export { isString } from './isString.ts' ;
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ export { clamp } from './clamp.ts';
22export { divide } from './divide.ts' ;
33export { fallbackNumber } from './fallbackNumber.ts' ;
44export { isInRange } from './isInRange.ts' ;
5+ export { isNegative } from './isNegative.ts' ;
6+ export { isPositive } from './isPositive.ts' ;
57export { percent } from './percent.ts' ;
68export { randomInt } from './randomInt.ts' ;
79export { toDecimal } from './toDecimal.ts' ;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments