mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 20:47:13 +00:00
35 lines
510 B
TypeScript
35 lines
510 B
TypeScript
import {
|
|
ncIsArray,
|
|
ncIsArrayIncludes,
|
|
ncIsBoolean,
|
|
ncIsEmptyArray,
|
|
ncIsEmptyObject,
|
|
ncIsFunction,
|
|
ncIsNull,
|
|
ncIsNumber,
|
|
ncIsObject,
|
|
ncIsPromise,
|
|
ncIsString,
|
|
ncIsUndefined,
|
|
} from 'nocodb-sdk'
|
|
|
|
const ncIsPlaywright = () => {
|
|
return !!(window as any)?.isPlaywright
|
|
}
|
|
|
|
export {
|
|
ncIsObject,
|
|
ncIsEmptyObject,
|
|
ncIsArray,
|
|
ncIsEmptyArray,
|
|
ncIsString,
|
|
ncIsNumber,
|
|
ncIsBoolean,
|
|
ncIsUndefined,
|
|
ncIsNull,
|
|
ncIsFunction,
|
|
ncIsPromise,
|
|
ncIsArrayIncludes,
|
|
ncIsPlaywright,
|
|
}
|