7 lines
142 B
JavaScript
7 lines
142 B
JavaScript
module.exports = {
|
|
before : function(cb) {
|
|
console.log("Requiring fetch polyfill");
|
|
fetch = require('whatwg-fetch').fetch;
|
|
cb();
|
|
}
|
|
};
|