Eslint cleanup for shared modules.

This commit is contained in:
Michał Lipiński
2017-02-18 23:31:42 +01:00
parent 27644a7bd5
commit b4e815c04b
6 changed files with 12 additions and 10 deletions

View File

@@ -9,7 +9,7 @@
*/
function baseSlice(array, start, end) {
let index = -1,
length = array.length
length = array.length
if (start < 0) {
start = -start > length ? 0 : (length + start)