16 lines
432 B
TypeScript
16 lines
432 B
TypeScript
import { hashKey } from "@tanstack/query-core";
|
|
|
|
export function objectKeys<O extends object>(obj: O): (keyof O)[] {
|
|
return Object.keys(obj) as (keyof O)[];
|
|
}
|
|
|
|
type Entries<T> = {
|
|
[K in keyof T]: [K, T[K]];
|
|
}[keyof T][];
|
|
|
|
export const objectEntries = <T extends object>(obj: T) => Object.entries(obj) as Entries<T>;
|
|
|
|
export const hashObjectBase64 = (obj: object) => {
|
|
return Buffer.from(hashKey([obj])).toString("base64");
|
|
};
|