mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
aa41057628
* eslint: Enable curly and brace-style * yarn lint --fix
15 lines
385 B
JavaScript
15 lines
385 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()
|
|
}
|