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