-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(isStringLengthBetween()): add feature to check string length bet…
…ween a specified range.
- Loading branch information
1 parent
0a7f449
commit 53e02d8
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Function. | ||
import { isNumberType } from './is-number-type.func'; | ||
import { isString } from './is-string.func'; | ||
import { resultCallback } from '../../lib/result-callback.func'; | ||
// Type. | ||
import { AnyString } from '../../type/any-string.type'; | ||
import { ResultCallback } from '../../type/result-callback.type'; | ||
import { StringOfLength } from '../../type/string-of-length.type'; | ||
/** | ||
* Checks if any value is a `string` type or an instance of `String` by using `isString()` of length within the specified range. | ||
* @var Type A generic type variable `Type` constrained by `AnyString` indicates captured `string` type of the given `value` via the return | ||
* type and the `value` parameter of the provided `callback` function `ResultCallback` type. | ||
* @var Min A generic type variable `Min` constrained by the `number` type, by default of value captured from optional `min` indicates the | ||
* `payload` parameter type of the provided `callback` function `ResultCallback` type and the minimum length of the provided `value` via the | ||
* return type. | ||
* @var Max A generic type variable `Max` constrained by the `number` type, by default of value captured from optional `max` indicates the | ||
* `payload` parameter type of the provided `callback` function `ResultCallback` type and the maximum length of the provided `value` via the | ||
* return type. | ||
* @var Payload The `Payload` generic type variable constrained by `object` indicates the type of optional parameter `payload` of the | ||
* supplied `callback` function and `payload` optional parameter of the `isStringLength()` function from which it captures its value. | ||
* @param value The value of any type to check. | ||
* @param min The **minimum** length of generic type variable `Min` of a given `value`. | ||
* @param max The **maximum** length of generic type variable `Max` of a given `value`. | ||
* @param callback A callback `function` of `ResultCallback` type with parameters, the `value` that has been checked, the `result` of this | ||
* check, and `payload` of generic type variable `Payload`, with the minimum and maximum `length` and optional properties from the | ||
* provided `payload`, to handle them before the `result` return. By default, it uses `resultCallback()` function. | ||
* @param payload An optional `object` of the generic type variable `Payload` is assigned to the `payload` of the given `callback` function. | ||
* @returns The return value is a `boolean` indicating whether the provided `value` is a `string` type or an instance of `String` of length | ||
* within the specified range. | ||
* @angularpackage | ||
*/ | ||
export const isStringLengthBetween = < | ||
Type extends AnyString = string, | ||
Min extends number = number, | ||
Max extends number = number, | ||
Payload extends object = object | ||
>( | ||
value: any, | ||
min: Min, | ||
max: Max, | ||
callback: ResultCallback<any, { min: Min, max: Max } & Payload> = resultCallback, | ||
payload?: Payload | ||
): value is StringOfLength<Min, Max, Type> => | ||
callback( | ||
isString(value) | ||
? (isNumberType(min) && min >= 0 ? value.valueOf().length >= min : false) && | ||
(isNumberType(max) && max >= 0 ? value.valueOf().length <= max : false) | ||
: false, | ||
value, | ||
{ ...payload, min, max } as any | ||
); |