Sha256: 50125f797f93ed017c77c1b26ac1b551c249dfa8b7e5628c84c77c7be40e7b44
Contents?: true
Size: 986 Bytes
Versions: 75
Compression:
Stored size: 986 Bytes
Contents
import '../../Object/defineProperty.mjs'; import '../../Element.mjs'; // @ts-nocheck (function(undefined) { // Detection from https://raw.githubusercontent.com/Financial-Times/polyfill-library/master/polyfills/Element/prototype/nextElementSibling/detect.js var detect = ( 'document' in this && "nextElementSibling" in document.documentElement ); if (detect) return // Polyfill from https://raw.githubusercontent.com/Financial-Times/polyfill-library/master/polyfills/Element/prototype/nextElementSibling/polyfill.js Object.defineProperty(Element.prototype, "nextElementSibling", { get: function(){ var el = this.nextSibling; while (el && el.nodeType !== 1) { el = el.nextSibling; } return el; } }); }).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {}); //# sourceMappingURL=vendor/polyfills/Element/prototype/nextElementSibling.mjs.map
Version data entries
75 entries across 75 versions & 1 rubygems