1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-13 05:15:47 +01:00

Replace Array.slice conversions of the arguments object with rest parameters.

This commit is contained in:
Doug Kearns
2013-09-05 20:46:21 +10:00
parent e0a0388382
commit 99bfcbf2fc
16 changed files with 82 additions and 93 deletions

View File

@@ -15,8 +15,7 @@ defineModule("addons", {
this.lazyRequire("completion", ["completion"]);
lazyRequire("template", ["template"]);
var callResult = function callResult(method) {
let args = Array.slice(arguments, 1);
var callResult = function callResult(method, ...args) {
return function (result) { result[method].apply(result, args); };
}