3/13/2023Less than 1 minute
setTimeout
and setInterval
Additional arguments fix for IE9-:
// Before:
setTimeout(log.bind(null, 42), 1000);
// After:
setTimeout(log, 1000, 42);
3/6/2023Less than 1 minute
3/4/2023Less than 1 minute
Iterable DOM collections
Some DOM collections should have iterable interface or should be inherited from Array
. That means they should have forEach
, keys
, values
, entries
and @@iterator
methods for iteration. So add them.
3/4/2023About 1 min
DOMException
Modules
3/4/2023Less than 1 minute
3/4/2023Less than 1 minute
3/4/2023Less than 1 minute
3/4/2023About 1 min
3/4/2023About 2 min