@resk/core
Version:
An innovative TypeScript framework that empowers developers to build applications with a fully decorator-based architecture for efficient resource management. By combining the power of decorators with a resource-oriented design, DecorRes enhances code cla
40 lines (39 loc) • 1.31 kB
TypeScript
export * from "./date";
export * from "./debounce";
export { debounce } from "./debounce";
export * from "./defaultArray";
export { defaultBool } from "./defaultBool";
export { defaultStr } from "./defaultStr";
export { defaultVal } from "./defaultVal";
export * from "./dom";
export * from "./image";
export { isNonNullString } from "./isNonNullString";
export * from "./isNumber";
export { isPromise } from "./isPromise";
export { isRegExp as isRegex } from "./isRegex";
export * from "./json";
export * from "./numbers";
export * from "./object";
export * from "./sort";
export { stringify } from "./stringify";
export { uniqid } from "./uniqid";
export * from "./uri";
export * from "./global";
export { isPrimitive } from "./isPrimitive";
export * from "./isValidEmail";
export * from "./string";
export * from "./uri";
/**
* Checks if a value is an integer.
*
* This function returns true if the value is a finite number and its floor value is equal to the value itself.
*
* @param x The value to check.
* @returns True if the value is an integer, false otherwise.
*/
export declare function isInteger(x: any): x is number;
export * from "./isNullable";
export { isClass } from "./isClass";
export { areEquals } from "./areEquals";
export { isEmpty } from "./isEmpty";
export * from "./interpolate";