/
githubmirror
/
fullPage.js
Обзор
Документация
Войти
/
githubmirror
/
fullPage.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/js/polyfills/array.foreach.js
14 строк
442 B
Alvaro Trigo López
- Minor changes
28 мар 2022, 18:38
28 мар 2022, 18:38
6ff0cb6
Код
Авторство
О чём код?
import { win } from "../common/constants.js"; /** * forEach polyfill for IE * https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Browser_Compatibility */ if (win.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = function (callback, thisArg) { thisArg = thisArg || window; for (var i = 0; i < this.length; i++) { callback.call(thisArg, this[i], i, this); } }; }