diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-12 13:29:15 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-11-12 13:29:15 +0100 |
commit | b9f5c216c6eb75f3a00c6b121da5a72885286fa0 (patch) | |
tree | f7af03f1119dc0bb852a7ac98702d709ba87e403 /src/types | |
parent | 7f67bc4ffa044607925246d846f544c87d5e00fa (diff) | |
download | svg.js-b9f5c216c6eb75f3a00c6b121da5a72885286fa0.tar.gz svg.js-b9f5c216c6eb75f3a00c6b121da5a72885286fa0.zip |
ticking off the last checkbox of (#645). return List whenever possible
Diffstat (limited to 'src/types')
-rw-r--r-- | src/types/List.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/types/List.js b/src/types/List.js index b50a18e..8bd3985 100644 --- a/src/types/List.js +++ b/src/types/List.js @@ -16,9 +16,6 @@ extend(List, { this.forEach((el) => { fnOrMethodName.call(el, el) }) } else { return this.map(el => { return el[fnOrMethodName](...args) }) - // this.forEach((el) => { - // el[fnOrMethodName](...args) - // }) } return this |