mirror of
https://github.com/NaitLee/Cat-Printer.git
synced 2025-05-17 07:40:21 -07:00
9 lines
140 B
JavaScript
9 lines
140 B
JavaScript
|
|
/**
|
|
* Polyfill
|
|
*/
|
|
(function() {
|
|
if (!NodeList.prototype.forEach)
|
|
NodeList.prototype.forEach = Array.prototype.forEach;
|
|
})();
|