first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

23
node_modules/expo-linking/build/ExpoLinking.web.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
import invariant from 'invariant';
export default {
addListener(eventName, listener) {
invariant(eventName === 'onURLReceived', `Linking.addListener(): ${eventName} is not a valid event`);
// Do nothing in Node.js environments
if (typeof window === 'undefined') {
return { remove() { } };
}
const nativeListener = (nativeEvent) => listener({ url: window.location.href, nativeEvent });
window.addEventListener('message', nativeListener, false);
return {
remove: () => {
window.removeEventListener('message', nativeListener);
},
};
},
getLinkingURL() {
if (typeof window === 'undefined')
return '';
return window.location.href;
},
};
//# sourceMappingURL=ExpoLinking.web.js.map