mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
4.0 KiB
178 lines
4.0 KiB
/** |
|
* Checks if a value is an object (excluding null). |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is an object, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = { key: 'value' }; |
|
* console.log(ncIsObject(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsObject(value: any): boolean { |
|
return value !== null && typeof value === 'object' && !ncIsArray(value) |
|
} |
|
|
|
/** |
|
* Checks if a value is an empty object. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is an empty object, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = {}; |
|
* console.log(ncIsEmptyObject(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsEmptyObject(value: any): boolean { |
|
return ncIsObject(value) && Object.keys(value).length === 0 |
|
} |
|
|
|
/** |
|
* Checks if a value is an array. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is an array, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = [1, 2, 3]; |
|
* console.log(ncIsArray(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsArray(value: any): boolean { |
|
return Array.isArray(value) |
|
} |
|
|
|
/** |
|
* Checks if a value is an empty array. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is an empty array, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = []; |
|
* console.log(ncIsEmptyArray(value)); // true |
|
* |
|
* const nonEmptyArray = [1, 2, 3]; |
|
* console.log(ncIsEmptyArray(nonEmptyArray)); // false |
|
* ``` |
|
*/ |
|
export function ncIsEmptyArray(value: any): boolean { |
|
return ncIsArray(value) && value.length === 0 |
|
} |
|
|
|
/** |
|
* Checks if a value is a string. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is a string, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = 'Hello, world!'; |
|
* console.log(ncIsString(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsString(value: any): boolean { |
|
return typeof value === 'string' |
|
} |
|
|
|
/** |
|
* Checks if a value is a number. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is a number, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = 42; |
|
* console.log(ncIsNumber(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsNumber(value: any): boolean { |
|
return typeof value === 'number' && !isNaN(value) |
|
} |
|
|
|
/** |
|
* Checks if a value is a boolean. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is a boolean, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = true; |
|
* console.log(ncIsBoolean(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsBoolean(value: any): boolean { |
|
return typeof value === 'boolean' |
|
} |
|
|
|
/** |
|
* Checks if a value is undefined. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is undefined, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = undefined; |
|
* console.log(ncIsUndefined(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsUndefined(value: any): boolean { |
|
return typeof value === 'undefined' |
|
} |
|
|
|
/** |
|
* Checks if a value is null. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is null, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = null; |
|
* console.log(ncIsNull(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsNull(value: any): boolean { |
|
return value === null |
|
} |
|
|
|
/** |
|
* Checks if a value is a function. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is a function, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = () => {}; |
|
* console.log(ncIsFunction(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsFunction(value: any): boolean { |
|
return typeof value === 'function' |
|
} |
|
|
|
/** |
|
* Checks if a value is a promise. |
|
* |
|
* @param value - The value to check. |
|
* @returns {boolean} - True if the value is a Promise, false otherwise. |
|
* |
|
* @example |
|
* ```typescript |
|
* const value = new Promise((resolve) => resolve(true)); |
|
* console.log(ncIsPromise(value)); // true |
|
* ``` |
|
*/ |
|
export function ncIsPromise(value: any): boolean { |
|
return value instanceof Promise |
|
}
|
|
|