Bump to v4.16.4.

This commit is contained in:
John-David Dalton
2016-10-05 19:32:45 -07:00
parent d9fd2bdf9c
commit 6778141728
17 changed files with 103 additions and 69 deletions

View File

@@ -1,4 +1,3 @@
import baseClamp from './_baseClamp.js';
import baseRandom from './_baseRandom.js';
/**
@@ -14,7 +13,7 @@ function shuffleSelf(array, size) {
length = array.length,
lastIndex = length - 1;
size = size === undefined ? length : baseClamp(size, 0, length);
size = size === undefined ? length : size;
while (++index < size) {
var rand = baseRandom(index, lastIndex),
value = array[rand];