1
0
Fork 0
blog/src/features/Web3/lib/polyfills.ts

8 lines
199 B
TypeScript
Raw Normal View History

2024-03-13 02:20:29 +01:00
import { Buffer } from 'buffer'
window.global = window.global ?? window
window.Buffer = window.Buffer ?? Buffer
window.process = window.process ?? { env: {} } // Minimal process polyfill
export {}