This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
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.
- Loading branch information
Showing
78 changed files
with
1,158 additions
and
2,111 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 |
---|---|---|
@@ -1,23 +1,19 @@ | ||
/** | ||
* @function isArrayStrict | ||
* @description Whether the array is not contain custom defined properties. | ||
* Determine whether the array is not contain custom defined properties. | ||
* @param {unknown[]} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isArrayStrict(item: unknown[]): boolean; | ||
export declare function isArrayStrict(item: unknown[]): boolean; | ||
/** | ||
* @function isArrayUniqueReference | ||
* @description Whether the array is contain unique references. | ||
* Determine whether the array is contain unique references. | ||
* @param {unknown[]} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isArrayUniqueReference(item: unknown[]): boolean; | ||
export declare function isArrayUniqueReference(item: unknown[]): boolean; | ||
/** | ||
* @function isArrayUnique | ||
* @description Whether the array is contain unique elements. | ||
* Determine whether the array is contain unique elements. | ||
* @param {unknown[]} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isArrayUnique(item: unknown[]): boolean; | ||
export { isArrayStrict, isArrayUnique, isArrayUniqueReference }; | ||
export declare function isArrayUnique(item: unknown[]): boolean; | ||
//# sourceMappingURL=array.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,53 +1,46 @@ | ||
import { type IntegralNumericTypeEnumKeysType } from "./internal/enum.js"; | ||
/** | ||
* @function isBigIntEven | ||
* @description Whether the big integer is even. | ||
* Determine whether the big integer is even. | ||
* @param {bigint} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isBigIntEven(item: bigint): boolean; | ||
export declare function isBigIntEven(item: bigint): boolean; | ||
/** | ||
* @function isBigIntIntegralNumericType | ||
* @description Whether the big integer is match the specified integral numeric type. | ||
* Determine whether the big integer is match the specified integral numeric type. | ||
* @param {IntegralNumericTypeEnumKeysType} typeName Name of the integral numeric type. | ||
* @param {bigint} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isBigIntIntegralNumericType(typeName: IntegralNumericTypeEnumKeysType, item: bigint): boolean; | ||
export declare function isBigIntIntegralNumericType(typeName: IntegralNumericTypeEnumKeysType, item: bigint): boolean; | ||
/** | ||
* @function isBigIntNegative | ||
* @description Whether the big integer is negative. | ||
* Determine whether the big integer is negative. | ||
* @param {bigint} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isBigIntNegative(item: bigint): boolean; | ||
export declare function isBigIntNegative(item: bigint): boolean; | ||
/** | ||
* @function isBigIntOdd | ||
* @description Whether the big integer is odd. | ||
* Determine whether the big integer is odd. | ||
* @param {bigint} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isBigIntOdd(item: bigint): boolean; | ||
export declare function isBigIntOdd(item: bigint): boolean; | ||
/** | ||
* @function isBigIntPositive | ||
* @description Whether the big integer is positive. | ||
* Determine whether the big integer is positive. | ||
* @param {bigint} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isBigIntPositive(item: bigint): boolean; | ||
export declare function isBigIntPositive(item: bigint): boolean; | ||
/** | ||
* @function isBigIntPrime | ||
* @description Whether the big integer is prime. | ||
* Determine whether the big integer is prime. | ||
* @param {bigint} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isBigIntPrime(item: bigint): boolean; | ||
export declare function isBigIntPrime(item: bigint): boolean; | ||
/** | ||
* @function isBigIntSafe | ||
* @description Whether the big integer is safe with IEEE-754. | ||
* Determine whether the big integer is safe with IEEE-754. | ||
* @param {bigint} item Item that need to determine. | ||
* @returns {boolean} Determine result. | ||
*/ | ||
declare function isBigIntSafe(item: bigint): boolean; | ||
export { isBigIntEven, isBigIntEven as isBigIntegerEven, isBigIntIntegralNumericType, isBigIntIntegralNumericType as isBigIntegerIntegralNumericType, isBigIntNegative, isBigIntNegative as isBigIntegerNegative, isBigIntOdd, isBigIntOdd as isBigIntegerOdd, isBigIntPositive, isBigIntPositive as isBigIntegerPositive, isBigIntPrime, isBigIntPrime as isBigIntegerPrime, isBigIntSafe, isBigIntSafe as isBigIntegerSafe }; | ||
export declare function isBigIntSafe(item: bigint): boolean; | ||
export { isBigIntEven as isBigIntegerEven, isBigIntIntegralNumericType as isBigIntegerIntegralNumericType, isBigIntNegative as isBigIntegerNegative, isBigIntOdd as isBigIntegerOdd, isBigIntPositive as isBigIntegerPositive, isBigIntPrime as isBigIntegerPrime, isBigIntSafe as isBigIntegerSafe }; | ||
//# sourceMappingURL=bigint.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.