import pack from 'react-native/package.json'; const [majorStr, minorStr] = pack.version.split('.'); export const REACT_NATIVE_VERSION = { major: parseInt(majorStr, 10), minor: parseInt(minorStr, 10) }; export function toArray(object) { if (!Array.isArray(object)) { return [object]; } return object; } export function withPrevAndCurrent(array, mapFn) { const previousArr = [null]; const currentArr = [...array]; const transformedArr = []; currentArr.forEach((current, i) => { const previous = previousArr[i]; const transformed = mapFn(previous, current); previousArr.push(transformed); transformedArr.push(transformed); }); return transformedArr; } // eslint-disable-next-line @typescript-eslint/ban-types export function hasProperty(object, key) { return Object.prototype.hasOwnProperty.call(object, key); } export function isJestEnv() { // @ts-ignore Do not use `@types/node` because it will prioritise Node types over RN types which breaks the types (ex. setTimeout) in React Native projects. return hasProperty(global, 'process') && !!process.env.JEST_WORKER_ID; } export function tagMessage(msg) { return `[react-native-gesture-handler] ${msg}`; } // helper method to check whether Fabric is enabled, however global.nativeFabricUIManager // may not be initialized before the first render export function isFabric() { var _global; // @ts-expect-error nativeFabricUIManager is not yet included in the RN types return !!((_global = global) !== null && _global !== void 0 && _global.nativeFabricUIManager); } export function shouldUseCodegenNativeComponent() { // use codegenNativeComponent starting with RN 0.68 return REACT_NATIVE_VERSION.minor >= 68 || REACT_NATIVE_VERSION.major > 0; } export function isRemoteDebuggingEnabled() { // react-native-reanimated checks if in remote debugging in the same way // @ts-ignore global is available but node types are not included return !global.nativeCallSyncHook || global.__REMOTEDEV__; } //# sourceMappingURL=utils.js.map