Skip to content

Instantly share code, notes, and snippets.

View GrosSacASac's full-sized avatar
🍎
Eating an apple

GrosSacASacs GrosSacASac

🍎
Eating an apple
View GitHub Profile
@GrosSacASac
GrosSacASac / importNode-polyfill.js
Last active February 14, 2024 02:56 — forked from dchambers/importNode-polyfill.js
importNode() polyfill for IE8
'use strict';
if(!window.DocumentFragment && window.HTMLDocument) {
window.DocumentFragment = HTMLDocument;
}
if(!document.ELEMENT_NODE) {
document.ELEMENT_NODE = 1;
document.ATTRIBUTE_NODE = 2;
document.TEXT_NODE = 3;