mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
466ece4588
This reverts commit1110287fe1
, reversing changes made to72eb233ee9
.
11 lines
381 B
JavaScript
11 lines
381 B
JavaScript
require('@babel/register')({
|
|
ignore: [name => name.includes('node_modules') && !name.includes('obs-store')],
|
|
})
|
|
|
|
require('./helper')
|
|
|
|
window.SVGPathElement = window.SVGPathElement || { prototype: {} }
|
|
window.fetch = window.fetch || function fetch () { return Promise.resolve() }
|
|
global.indexedDB = {}
|
|
global.fetch = global.fetch || function fetch () { return Promise.resolve() }
|