@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
8 lines • 357 B
TypeScript
/**
* Mimics the behavior of Python's `id()` function. The idea is that often times
* we can't use e.g. obj.constructor.name, because it got mangled by e.g.
* UglifyJS during bundling. But to build cache keys, we still need some
* per-object identifier.
*/
export declare function objectId(objIn: object): number;
//# sourceMappingURL=objectId.d.ts.map