├── .editorconfig ├── .gitattributes ├── .gitignore ├── .prettierignore ├── .prettierrc ├── api ├── package.json ├── readme.md ├── src │ ├── index.ts │ └── lib │ │ ├── get_profile.ts │ │ ├── get_request_cookies.ts │ │ ├── http_data │ │ ├── parse_set_cookies.ts │ │ └── stringify_data.ts │ │ ├── login.ts │ │ └── profile.d.ts └── tsconfig.json ├── design.xd ├── logos.ai ├── readme.md ├── reversed-api ├── @types │ ├── debug │ │ └── index.d.ts │ ├── exif-js │ │ └── index.d.ts │ └── qwest │ │ └── index.d.ts ├── bundles │ ├── ActivityFeedBox.js_5d162c14f9cf.js │ ├── ComsumerAsyncCommons.js_62caa74476bd.js │ ├── Consumer.js_149928a3d61d.js │ ├── ConsumerLibCommons.js_6d9460d61e91.js │ ├── ConsumerUICommons.js_80ca0d91578f.js │ ├── FeedPageContainer.js_a521f7031e29.js │ ├── FeedSidebarContainer.js_0435b38b7a79.js │ ├── Vendor.js_a379f2a567f9.js │ └── en_US.js_ffcf4a95ff82.js ├── known_modules.txt ├── package.json ├── readme.md ├── src │ ├── fbts │ │ ├── BrowserSupportCore.ts │ │ ├── CSSCore.ts │ │ ├── CircularBuffer.ts │ │ ├── DOMMouseMoveTracker.ts │ │ ├── DataTransfer.ts │ │ ├── Deferred.ts │ │ ├── ErrorUtils.ts │ │ ├── EventListener.ts │ │ ├── ExecutionEnvironment.ts │ │ ├── Heap.ts │ │ ├── IntegerBufferSet.ts │ │ ├── Keys.ts │ │ ├── Locale.ts │ │ ├── Map.ts │ │ ├── PhotosMimeType.ts │ │ ├── PrefixIntervalTree.ts │ │ ├── Promise.native.ts │ │ ├── Promise.ts │ │ ├── PromiseMap.ts │ │ ├── ReactWheelHandler.ts │ │ ├── Scroll.ts │ │ ├── Set.ts │ │ ├── SiteData.ts │ │ ├── Style.ts │ │ ├── TokenizeUtil.ts │ │ ├── TouchEventUtils.ts │ │ ├── URI.ts │ │ ├── UnicodeBidi.ts │ │ ├── UnicodeBidiDirection.ts │ │ ├── UnicodeBidiService.ts │ │ ├── UnicodeCJK.ts │ │ ├── UnicodeHangulKorean.ts │ │ ├── UnicodeUtils.ts │ │ ├── UnicodeUtilsExtra.ts │ │ ├── UserAgent.ts │ │ ├── UserAgentData.ts │ │ ├── VersionRange.ts │ │ ├── _shouldPolyfillES6Collection.ts │ │ ├── areEqual.ts │ │ ├── base62.ts │ │ ├── camelize.ts │ │ ├── camelizeStyleName.ts │ │ ├── cancelAnimationFramePolyfill.ts │ │ ├── clamp.ts │ │ ├── compactArray.ts │ │ ├── concatAllArray.ts │ │ ├── containsNode.ts │ │ ├── countDistinct.ts │ │ ├── crc32.ts │ │ ├── createArrayFromMixed.ts │ │ ├── createNodesFromMarkup.ts │ │ ├── cssVar.ts │ │ ├── cx.ts │ │ ├── debounceCore.ts │ │ ├── distinctArray.ts │ │ ├── emptyFunction.ts │ │ ├── emptyObject.ts │ │ ├── enumerate.ts │ │ ├── equalsIterable.ts │ │ ├── equalsSet.ts │ │ ├── everyObject.ts │ │ ├── everySet.ts │ │ ├── fetch.ts │ │ ├── fetchWithRetries.ts │ │ ├── filterObject.ts │ │ ├── flatMapArray.ts │ │ ├── flattenArray.ts │ │ ├── focusNode.ts │ │ ├── forEachObject.ts │ │ ├── getActiveElement.ts │ │ ├── getByPath.ts │ │ ├── getDocumentScrollElement.ts │ │ ├── getElementPosition.ts │ │ ├── getElementRect.ts │ │ ├── getMarkupWrap.ts │ │ ├── getScrollPosition.ts │ │ ├── getStyleProperty.ts │ │ ├── getUnboundedScrollPosition.ts │ │ ├── getVendorPrefixedName.ts │ │ ├── getViewportDimensions.ts │ │ ├── groupArray.ts │ │ ├── hyphenate.ts │ │ ├── hyphenateStyleName.ts │ │ ├── index.d.ts │ │ ├── invariant.ts │ │ ├── isEmail.ts │ │ ├── isEmpty.ts │ │ ├── isEventSupported.ts │ │ ├── isInternationalPhoneNumber.ts │ │ ├── isNode.ts │ │ ├── isTextNode.ts │ │ ├── joinClasses.ts │ │ ├── keyMirror.ts │ │ ├── keyMirrorRecursive.ts │ │ ├── keyOf.ts │ │ ├── mapObject.ts │ │ ├── maxBy.ts │ │ ├── memoizeStringOnly.ts │ │ ├── minBy.ts │ │ ├── monitorCodeUse.ts │ │ ├── nativeRequestAnimationFrame.ts │ │ ├── normalizeWheel.ts │ │ ├── nullthrows.ts │ │ ├── partitionArray.ts │ │ ├── partitionObject.ts │ │ ├── partitionObjectByKey.ts │ │ ├── performance.ts │ │ ├── performanceNow.ts │ │ ├── removeFromArray.ts │ │ ├── requestAnimationFrame.ts │ │ ├── requestAnimationFramePolyfill.ts │ │ ├── resolveImmediate.ts │ │ ├── setImmediate.ts │ │ ├── shallowEqual.ts │ │ ├── someObject.ts │ │ ├── someSet.ts │ │ ├── sprintf.ts │ │ ├── translateDOMPositionXY.ts │ │ ├── warning.ts │ │ └── xhrSimpleDataSerializer.ts │ ├── instagram │ │ ├── 10092571_is-false.ts │ │ ├── 10289231_timeout-extended.ts │ │ ├── 10289286_filter-object.ts │ │ ├── 10_debug-extended.ts │ │ ├── 11862025_media-constants.ts │ │ ├── 11927566_image-metadata.ts │ │ ├── 11927574_orientations.ts │ │ ├── 11993123_ppr.ts │ │ ├── 12255279_visibility-change.ts │ │ ├── 12255291_buffer-timings.ts │ │ ├── 12255370_normalize-and-truncate.ts │ │ ├── 12714051_notification-constants.ts │ │ ├── 12779530_empty-lists.ts │ │ ├── 14352467_timeout-emulated.ts │ │ ├── 14680068_caching-support.ts │ │ ├── 14680072_uri-security.ts │ │ ├── 14680159_get-follow-constants.ts │ │ ├── 14680200_query-serializer.ts │ │ ├── 14876672_sw-constants.ts │ │ ├── 14876674_comparison.ts │ │ ├── 14876675_limited-generator.ts │ │ ├── 14876676_to-number.ts │ │ ├── 14876677_is-symbol.ts │ │ ├── 14876678_window-symbol.ts │ │ ├── 14876679_native-string-representation.ts │ │ ├── 14876680_simple-stringify.ts │ │ ├── 14876681_window-all-contexts.ts │ │ ├── 14876682_window-if-global.ts │ │ ├── 14876713_apply-phonological-transformations.ts │ │ ├── 14876714_translations-cache.ts │ │ ├── 14876715_store-logging-params.ts │ │ ├── 14876717_get-gatekeeper-fp.ts │ │ ├── 14876718_event-logging-endpoint.ts │ │ ├── 14876720_extended-error.ts │ │ ├── 14876721_parse-error-string.ts │ │ ├── 14876722_eprintf.ts │ │ ├── 14876723_validate-http-request.ts │ │ ├── 14876727_is-frame.ts │ │ ├── 14876728_banzai-shared.ts │ │ ├── 14876729_event-logging.ts │ │ ├── 14876730_page.ts │ │ ├── 14876731_payload-storage.ts │ │ ├── 14876732_event-listeners.ts │ │ ├── 14876733_uri-parser.ts │ │ ├── 14876734_log-exposure.ts │ │ ├── 14876735_get-qe-override.ts │ │ ├── 14876779_logging-constants.ts │ │ ├── 14876784_normalize-page.ts │ │ ├── 14876785_get-instance-key.ts │ │ ├── 14876786_quick-performance-logger.ts │ │ ├── 14876787_qpl-config.ts │ │ ├── 14876788_event-constants.ts │ │ ├── 14876789_get-current-timestamp.ts │ │ ├── 14876790_get-navigation-start-timestamp.ts │ │ ├── 14876791_falco-log.ts │ │ ├── 14876792_device-data.ts │ │ ├── 14942208_phonology.ts │ │ ├── 14942219_performance-object.ts │ │ ├── 14942220_uri-base.ts │ │ ├── 14942221_uri-schemes.ts │ │ ├── 14942222_array-to-object.ts │ │ ├── 1_cookies-internal.ts │ │ ├── 65537_localization.ts │ │ ├── 9502825_invariant-ex.ts │ │ ├── 9502826_ex.ts │ │ ├── 9502827_environment-metadata.ts │ │ ├── 9568260_get-string.ts │ │ ├── 9568262_paths.ts │ │ ├── 9568264_expect-non-null.ts │ │ ├── 9568270_config.ts │ │ ├── 9568272_page-ids.ts │ │ ├── 9568276_user-agent.ts │ │ ├── 9568288_react-measure.ts │ │ ├── 9568293_timings.ts │ │ ├── 9568306_log-camera.ts │ │ ├── 9568324_log-error.ts │ │ ├── 9568343_cached.ts │ │ ├── 9568346_logging.ts │ │ ├── 9568347_events.ts │ │ ├── 9568348_banzai.ts │ │ ├── 9568349_banzai-actions-constants.ts │ │ ├── 9568361_throw-error-async.ts │ │ ├── 9568364_http.ts │ │ ├── 9568383_get-qe.ts │ │ ├── 9568387_device-constants.ts │ │ ├── 9568392_passes-gatekeeper.ts │ │ ├── 9568399_cookies.ts │ │ ├── 9568400_known-cookies.ts │ │ ├── 9699337_ig-lite-events.ts │ │ ├── 9699338_mid.ts │ │ ├── 9699358_random.ts │ │ ├── 9699359_error-utils.ts │ │ ├── 9699363_is-function-or-object.ts │ │ ├── 9699364_is-not-null.ts │ │ ├── 9699365_stringify.ts │ │ ├── 9699366_timeout.ts │ │ ├── 9699368_storage.ts │ │ ├── 9764883_normalize-number.ts │ │ ├── 9830424_zero-rating.ts │ │ ├── 9830455_event-loop.ts │ │ ├── 9830460_two-value-generator.ts │ │ ├── 9830461_ig-lite-bindings.ts │ │ ├── 9830466_random-6-char-string.ts │ │ ├── 9830468_precache.ts │ │ ├── 9830509_uri.ts │ │ ├── 9830523_falco.ts │ │ ├── 9830532_direct-support.ts │ │ ├── 9830596_guard.ts │ │ ├── 9830606_path-props.ts │ │ ├── 9961525_log-performance.ts │ │ ├── 9961573_quick-performance-logger-extended.ts │ │ ├── 9961574_log-constants.ts │ │ ├── 9961575_shared-data.ts │ │ ├── 9961579_instance-ids.ts │ │ ├── 9961589_pagination.ts │ │ ├── 9961594_push-notifications.ts │ │ ├── 9961602_service-worker.ts │ │ ├── _starting-point-1_9568362_api.ts │ │ ├── _starting-point-2_12779531_get-follow-data.ts │ │ ├── _starting-point-3_14680187_get-props-from-server.ts │ │ ├── for-later_9699339_thread-constants.ts │ │ ├── for-later_9830423_dom-interface.ts │ │ └── index.d.ts │ └── mixin-event-emitter │ │ ├── EmitterSubscription.ts │ │ ├── EventEmitter.ts │ │ ├── EventEmitterWithHolding.ts │ │ ├── EventHolder.ts │ │ ├── EventSubscription.ts │ │ ├── EventSubscriptionVendor.ts │ │ ├── EventValidator.ts │ │ ├── copyProperties.ts │ │ ├── index.ts │ │ └── nm.txt └── tsconfig.json └── ui-sketch.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/.prettierrc -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/package.json -------------------------------------------------------------------------------- /api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/readme.md -------------------------------------------------------------------------------- /api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/src/index.ts -------------------------------------------------------------------------------- /api/src/lib/get_profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/src/lib/get_profile.ts -------------------------------------------------------------------------------- /api/src/lib/get_request_cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/src/lib/get_request_cookies.ts -------------------------------------------------------------------------------- /api/src/lib/http_data/parse_set_cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/src/lib/http_data/parse_set_cookies.ts -------------------------------------------------------------------------------- /api/src/lib/http_data/stringify_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/src/lib/http_data/stringify_data.ts -------------------------------------------------------------------------------- /api/src/lib/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/src/lib/login.ts -------------------------------------------------------------------------------- /api/src/lib/profile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/src/lib/profile.d.ts -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /design.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/design.xd -------------------------------------------------------------------------------- /logos.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/logos.ai -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/readme.md -------------------------------------------------------------------------------- /reversed-api/@types/debug/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/@types/debug/index.d.ts -------------------------------------------------------------------------------- /reversed-api/@types/exif-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/@types/exif-js/index.d.ts -------------------------------------------------------------------------------- /reversed-api/@types/qwest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/@types/qwest/index.d.ts -------------------------------------------------------------------------------- /reversed-api/bundles/ActivityFeedBox.js_5d162c14f9cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/ActivityFeedBox.js_5d162c14f9cf.js -------------------------------------------------------------------------------- /reversed-api/bundles/ComsumerAsyncCommons.js_62caa74476bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/ComsumerAsyncCommons.js_62caa74476bd.js -------------------------------------------------------------------------------- /reversed-api/bundles/Consumer.js_149928a3d61d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/Consumer.js_149928a3d61d.js -------------------------------------------------------------------------------- /reversed-api/bundles/ConsumerLibCommons.js_6d9460d61e91.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/ConsumerLibCommons.js_6d9460d61e91.js -------------------------------------------------------------------------------- /reversed-api/bundles/ConsumerUICommons.js_80ca0d91578f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/ConsumerUICommons.js_80ca0d91578f.js -------------------------------------------------------------------------------- /reversed-api/bundles/FeedPageContainer.js_a521f7031e29.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/FeedPageContainer.js_a521f7031e29.js -------------------------------------------------------------------------------- /reversed-api/bundles/FeedSidebarContainer.js_0435b38b7a79.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/FeedSidebarContainer.js_0435b38b7a79.js -------------------------------------------------------------------------------- /reversed-api/bundles/Vendor.js_a379f2a567f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/Vendor.js_a379f2a567f9.js -------------------------------------------------------------------------------- /reversed-api/bundles/en_US.js_ffcf4a95ff82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/bundles/en_US.js_ffcf4a95ff82.js -------------------------------------------------------------------------------- /reversed-api/known_modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/known_modules.txt -------------------------------------------------------------------------------- /reversed-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/package.json -------------------------------------------------------------------------------- /reversed-api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/readme.md -------------------------------------------------------------------------------- /reversed-api/src/fbts/BrowserSupportCore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/BrowserSupportCore.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/CSSCore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/CSSCore.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/CircularBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/CircularBuffer.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/DOMMouseMoveTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/DOMMouseMoveTracker.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/DataTransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/DataTransfer.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Deferred.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/ErrorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/ErrorUtils.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/EventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/EventListener.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/ExecutionEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/ExecutionEnvironment.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Heap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Heap.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/IntegerBufferSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/IntegerBufferSet.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Keys.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Locale.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Map.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/PhotosMimeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/PhotosMimeType.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/PrefixIntervalTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/PrefixIntervalTree.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Promise.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Promise.native.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Promise.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/PromiseMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/PromiseMap.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/ReactWheelHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/ReactWheelHandler.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Scroll.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Set.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/SiteData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/SiteData.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/Style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/Style.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/TokenizeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/TokenizeUtil.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/TouchEventUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/TouchEventUtils.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/URI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/URI.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UnicodeBidi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UnicodeBidi.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UnicodeBidiDirection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UnicodeBidiDirection.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UnicodeBidiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UnicodeBidiService.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UnicodeCJK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UnicodeCJK.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UnicodeHangulKorean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UnicodeHangulKorean.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UnicodeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UnicodeUtils.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UnicodeUtilsExtra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UnicodeUtilsExtra.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UserAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UserAgent.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/UserAgentData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/UserAgentData.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/VersionRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/VersionRange.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/_shouldPolyfillES6Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/_shouldPolyfillES6Collection.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/areEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/areEqual.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/base62.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/base62.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/camelize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/camelize.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/camelizeStyleName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/camelizeStyleName.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/cancelAnimationFramePolyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/cancelAnimationFramePolyfill.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/clamp.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/compactArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/compactArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/concatAllArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/concatAllArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/containsNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/containsNode.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/countDistinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/countDistinct.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/crc32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/crc32.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/createArrayFromMixed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/createArrayFromMixed.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/createNodesFromMarkup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/createNodesFromMarkup.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/cssVar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/cssVar.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/cx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/cx.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/debounceCore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/debounceCore.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/distinctArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/distinctArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/emptyFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/emptyFunction.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/emptyObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/emptyObject.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/enumerate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/enumerate.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/equalsIterable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/equalsIterable.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/equalsSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/equalsSet.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/everyObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/everyObject.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/everySet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/everySet.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/fetch.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/fetchWithRetries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/fetchWithRetries.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/filterObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/filterObject.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/flatMapArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/flatMapArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/flattenArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/flattenArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/focusNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/focusNode.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/forEachObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/forEachObject.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getActiveElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getActiveElement.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getByPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getByPath.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getDocumentScrollElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getDocumentScrollElement.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getElementPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getElementPosition.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getElementRect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getElementRect.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getMarkupWrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getMarkupWrap.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getScrollPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getScrollPosition.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getStyleProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getStyleProperty.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getUnboundedScrollPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getUnboundedScrollPosition.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getVendorPrefixedName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getVendorPrefixedName.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/getViewportDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/getViewportDimensions.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/groupArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/groupArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/hyphenate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/hyphenate.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/hyphenateStyleName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/hyphenateStyleName.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/index.d.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/invariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/invariant.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/isEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/isEmail.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/isEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/isEmpty.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/isEventSupported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/isEventSupported.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/isInternationalPhoneNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/isInternationalPhoneNumber.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/isNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/isNode.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/isTextNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/isTextNode.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/joinClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/joinClasses.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/keyMirror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/keyMirror.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/keyMirrorRecursive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/keyMirrorRecursive.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/keyOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/keyOf.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/mapObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/mapObject.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/maxBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/maxBy.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/memoizeStringOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/memoizeStringOnly.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/minBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/minBy.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/monitorCodeUse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/monitorCodeUse.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/nativeRequestAnimationFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/nativeRequestAnimationFrame.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/normalizeWheel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/normalizeWheel.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/nullthrows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/nullthrows.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/partitionArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/partitionArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/partitionObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/partitionObject.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/partitionObjectByKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/partitionObjectByKey.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/performance.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/performanceNow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/performanceNow.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/removeFromArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/removeFromArray.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/requestAnimationFrame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/requestAnimationFrame.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/requestAnimationFramePolyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/requestAnimationFramePolyfill.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/resolveImmediate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/resolveImmediate.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/setImmediate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/setImmediate.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/shallowEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/shallowEqual.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/someObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/someObject.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/someSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/someSet.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/sprintf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/sprintf.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/translateDOMPositionXY.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/translateDOMPositionXY.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/warning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/warning.ts -------------------------------------------------------------------------------- /reversed-api/src/fbts/xhrSimpleDataSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/fbts/xhrSimpleDataSerializer.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/10092571_is-false.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/10092571_is-false.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/10289231_timeout-extended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/10289231_timeout-extended.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/10289286_filter-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/10289286_filter-object.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/10_debug-extended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/10_debug-extended.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/11862025_media-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/11862025_media-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/11927566_image-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/11927566_image-metadata.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/11927574_orientations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/11927574_orientations.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/11993123_ppr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/11993123_ppr.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/12255279_visibility-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/12255279_visibility-change.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/12255291_buffer-timings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/12255291_buffer-timings.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/12255370_normalize-and-truncate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/12255370_normalize-and-truncate.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/12714051_notification-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/12714051_notification-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/12779530_empty-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/12779530_empty-lists.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14352467_timeout-emulated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14352467_timeout-emulated.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14680068_caching-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14680068_caching-support.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14680072_uri-security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14680072_uri-security.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14680159_get-follow-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14680159_get-follow-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14680200_query-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14680200_query-serializer.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876672_sw-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876672_sw-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876674_comparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876674_comparison.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876675_limited-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876675_limited-generator.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876676_to-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876676_to-number.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876677_is-symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876677_is-symbol.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876678_window-symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876678_window-symbol.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876679_native-string-representation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876679_native-string-representation.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876680_simple-stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876680_simple-stringify.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876681_window-all-contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876681_window-all-contexts.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876682_window-if-global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876682_window-if-global.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876713_apply-phonological-transformations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876713_apply-phonological-transformations.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876714_translations-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876714_translations-cache.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876715_store-logging-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876715_store-logging-params.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876717_get-gatekeeper-fp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876717_get-gatekeeper-fp.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876718_event-logging-endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876718_event-logging-endpoint.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876720_extended-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876720_extended-error.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876721_parse-error-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876721_parse-error-string.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876722_eprintf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876722_eprintf.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876723_validate-http-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876723_validate-http-request.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876727_is-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876727_is-frame.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876728_banzai-shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876728_banzai-shared.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876729_event-logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876729_event-logging.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876730_page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876730_page.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876731_payload-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876731_payload-storage.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876732_event-listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876732_event-listeners.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876733_uri-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876733_uri-parser.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876734_log-exposure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876734_log-exposure.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876735_get-qe-override.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876735_get-qe-override.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876779_logging-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876779_logging-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876784_normalize-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876784_normalize-page.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876785_get-instance-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876785_get-instance-key.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876786_quick-performance-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876786_quick-performance-logger.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876787_qpl-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876787_qpl-config.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876788_event-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876788_event-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876789_get-current-timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876789_get-current-timestamp.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876790_get-navigation-start-timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876790_get-navigation-start-timestamp.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876791_falco-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876791_falco-log.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14876792_device-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14876792_device-data.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14942208_phonology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14942208_phonology.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14942219_performance-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14942219_performance-object.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14942220_uri-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14942220_uri-base.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14942221_uri-schemes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14942221_uri-schemes.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/14942222_array-to-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/14942222_array-to-object.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/1_cookies-internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/1_cookies-internal.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/65537_localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/65537_localization.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9502825_invariant-ex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9502825_invariant-ex.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9502826_ex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9502826_ex.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9502827_environment-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9502827_environment-metadata.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568260_get-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568260_get-string.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568262_paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568262_paths.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568264_expect-non-null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568264_expect-non-null.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568270_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568270_config.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568272_page-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568272_page-ids.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568276_user-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568276_user-agent.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568288_react-measure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568288_react-measure.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568293_timings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568293_timings.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568306_log-camera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568306_log-camera.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568324_log-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568324_log-error.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568343_cached.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568343_cached.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568346_logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568346_logging.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568347_events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568347_events.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568348_banzai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568348_banzai.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568349_banzai-actions-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568349_banzai-actions-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568361_throw-error-async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568361_throw-error-async.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568364_http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568364_http.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568383_get-qe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568383_get-qe.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568387_device-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568387_device-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568392_passes-gatekeeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568392_passes-gatekeeper.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568399_cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568399_cookies.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9568400_known-cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9568400_known-cookies.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699337_ig-lite-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699337_ig-lite-events.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699338_mid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699338_mid.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699358_random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699358_random.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699359_error-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699359_error-utils.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699363_is-function-or-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699363_is-function-or-object.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699364_is-not-null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699364_is-not-null.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699365_stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699365_stringify.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699366_timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699366_timeout.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9699368_storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9699368_storage.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9764883_normalize-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9764883_normalize-number.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830424_zero-rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830424_zero-rating.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830455_event-loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830455_event-loop.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830460_two-value-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830460_two-value-generator.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830461_ig-lite-bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830461_ig-lite-bindings.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830466_random-6-char-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830466_random-6-char-string.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830468_precache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830468_precache.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830509_uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830509_uri.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830523_falco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830523_falco.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830532_direct-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830532_direct-support.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830596_guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830596_guard.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9830606_path-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9830606_path-props.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961525_log-performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961525_log-performance.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961573_quick-performance-logger-extended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961573_quick-performance-logger-extended.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961574_log-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961574_log-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961575_shared-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961575_shared-data.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961579_instance-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961579_instance-ids.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961589_pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961589_pagination.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961594_push-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961594_push-notifications.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/9961602_service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/9961602_service-worker.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/_starting-point-1_9568362_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/_starting-point-1_9568362_api.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/_starting-point-2_12779531_get-follow-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/_starting-point-2_12779531_get-follow-data.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/_starting-point-3_14680187_get-props-from-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/_starting-point-3_14680187_get-props-from-server.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/for-later_9699339_thread-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/for-later_9699339_thread-constants.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/for-later_9830423_dom-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/for-later_9830423_dom-interface.ts -------------------------------------------------------------------------------- /reversed-api/src/instagram/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/instagram/index.d.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/EmitterSubscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/EmitterSubscription.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/EventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/EventEmitter.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/EventEmitterWithHolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/EventEmitterWithHolding.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/EventHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/EventHolder.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/EventSubscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/EventSubscription.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/EventSubscriptionVendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/EventSubscriptionVendor.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/EventValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/EventValidator.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/copyProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/copyProperties.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/index.ts -------------------------------------------------------------------------------- /reversed-api/src/mixin-event-emitter/nm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/src/mixin-event-emitter/nm.txt -------------------------------------------------------------------------------- /reversed-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/reversed-api/tsconfig.json -------------------------------------------------------------------------------- /ui-sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamianoMagrini/instaverse/HEAD/ui-sketch.png --------------------------------------------------------------------------------