Merge pull request #2920 from alphagov/remove-use-of-spread-operator

Remove use of spread operator
This commit is contained in:
Tom Byers
2019-04-17 14:45:26 +01:00
committed by GitHub

View File

@@ -34,7 +34,7 @@
); );
setTimeout( setTimeout(
() => poll(...arguments), interval () => poll.apply(window, arguments), interval
); );
}; };