diff --git a/src/realm.ts b/src/realm.ts index ad9cc5c..f21e3cf 100644 --- a/src/realm.ts +++ b/src/realm.ts @@ -1373,3 +1373,7 @@ export const combine: Realm['combine'] = (...args: unknown[]) => { // @ts-expect-error - this is fine return getCurrentRealm().combine(...args) } + +export const getValue: Realm['getValue'] = (node) => { + return getCurrentRealm().getValue(node) +}