Sha256: 1a05187af1a7faa86b4433ea4ea767c58993a460c8d870647d9324cf6bb6a3b8
Contents?: true
Size: 1014 Bytes
Versions: 75
Compression:
Stored size: 1014 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/previousElementSibling/detect.js var detect = ( 'document' in this && "previousElementSibling" in document.documentElement ); if (detect) return // Polyfill from https://raw.githubusercontent.com/Financial-Times/polyfill-library/master/polyfills/Element/prototype/previousElementSibling/polyfill.js Object.defineProperty(Element.prototype, 'previousElementSibling', { get: function(){ var el = this.previousSibling; while (el && el.nodeType !== 1) { el = el.previousSibling; } return el; } }); }).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {}); //# sourceMappingURL=vendor/polyfills/Element/prototype/previousElementSibling.mjs.map
Version data entries
75 entries across 75 versions & 1 rubygems