Skip to content

Instantly share code, notes, and snippets.

View amoghbanta's full-sized avatar
🎯
Focusing

Amogh Banta amoghbanta

🎯
Focusing
View GitHub Profile
@axemclion
axemclion / MessageQueueSpy.js
Last active February 8, 2023 06:25
Message Queue - Replay React Native Message Queue
import MessageQueue from 'react-native/Libraries/BatchedBridge/MessageQueue.js';
const WHITELIST = ['UIManager'];
const NOOP = () => { };
let queue = [];
let now = 0;
export default {
start() {
MessageQueue.spy(msg => {