UNPKG

@sequelize/core

Version:

Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, and IBM i. It features solid transaction support, relations, eager and lazy loading, read replication a

25 lines (24 loc) 550 B
/** * getComplexKeys * * @param obj * @returns All keys including operators * @private */ export declare function getComplexKeys(obj: object): Array<string | symbol>; /** * getComplexSize * * @param obj * @returns Length of object properties including operators if obj is array returns its length * @private */ export declare function getComplexSize(obj: object | any[]): number; /** * getOperators * * @param obj * @returns All operators properties of obj * @private */ export declare function getOperators(obj: object): symbol[];