@foo-software/lighthouse-persist
Version:
A tool for persisting Lighthouse audit results used for website performance monitoring and analysis.
10 lines • 481 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// a bit of a hack until we only support ES Modules.
// at least this is the officially recommended hack
// https://github.com/node-fetch/node-fetch#commonjs
// note the key here:
// https://github.com/microsoft/TypeScript/pull/44501#issue-914346744
const fetch = (...args) => import('node-fetch').then(({ default: module }) => module(...args));
exports.default = fetch;
//# sourceMappingURL=fetch.js.map