UNPKG

better-auth

Version:

The most comprehensive authentication framework for TypeScript.

7 lines (6 loc) 245 B
//#region src/utils/is-atom.ts function isAtom(value) { return typeof value === "object" && value !== null && "get" in value && typeof value.get === "function" && "lc" in value && typeof value.lc === "number"; } //#endregion export { isAtom };