asPositiveInteger() function
This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Utility function for custom functions. Cast a value as a positive integer, unwrapping objects using their valueOf()
methods. Also accepts JSON string reprentations of integers. Throws a RangeError
for invalid inputs.
Signature:
export declare function asPositiveInteger(value: unknown): number;
Parameters
Parameter | Type | Description |
---|---|---|
value | unknown |
Returns:
number