UNPKG

@splitsoftware/splitio-commons

Version:
10 lines (9 loc) 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getFetch = void 0; // It doesn't return a ponyfill if global fetch is not available function getFetch() { // eslint-disable-next-line no-undef return typeof fetch === 'function' ? fetch : undefined; } exports.getFetch = getFetch;