affiliate
Version:
A platform agnostic tool to quickly add affiliate links onto your website
9 lines • 443 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.hasURL = exports.hasMutationObserver = void 0;
// Check for MutationObserver
exports.hasMutationObserver = typeof window === 'object' &&
!(typeof window.MutationObserver === 'undefined');
// Check for URL and URLSearchParams
exports.hasURL = typeof URL === 'function' && typeof URLSearchParams === 'function';
//# sourceMappingURL=features.js.map