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