Cat-Printer/www/polyfill.js
2022-04-06 18:13:19 +08:00

9 lines
140 B
JavaScript

/**
* Polyfill
*/
(function() {
if (!NodeList.prototype.forEach)
NodeList.prototype.forEach = Array.prototype.forEach;
})();