UNPKG

261 BJavaScriptView Raw
1'use strict';
2
3export function isSharedValue(value) {
4 'worklet';
5
6 // We cannot use `in` operator here because `value` could be a HostObject and therefore we cast.
7 return value?._isReanimatedSharedValue === true;
8}
9//# sourceMappingURL=isSharedValue.js.map
\No newline at end of file