Comparing version 5.13.0 to 5.13.1
@@ -1664,3 +1664,3 @@ function F() { | ||
while (stopFlag === false && counter++ < list.length) { | ||
while (stopFlag === false && counter++ < list.length - 1) { | ||
if (!predicate(list[counter])) { | ||
@@ -1667,0 +1667,0 @@ stopFlag = true; |
@@ -1668,3 +1668,3 @@ 'use strict'; | ||
while (stopFlag === false && counter++ < list.length) { | ||
while (stopFlag === false && counter++ < list.length - 1) { | ||
if (!predicate(list[counter])) { | ||
@@ -1671,0 +1671,0 @@ stopFlag = true; |
@@ -1670,3 +1670,3 @@ (function (global, factory) { | ||
while (stopFlag === false && counter++ < list.length) { | ||
while (stopFlag === false && counter++ < list.length - 1) { | ||
if (!predicate(list[counter])) { | ||
@@ -1673,0 +1673,0 @@ stopFlag = true; |
@@ -21,3 +21,3 @@ { | ||
"main": "./dist/rambda.js", | ||
"version": "5.13.0", | ||
"version": "5.13.1", | ||
"dependencies": {}, | ||
@@ -24,0 +24,0 @@ "devDependencies": { |
@@ -6,3 +6,3 @@ export function takeWhile(predicate, list){ | ||
while (stopFlag === false && counter++ < list.length){ | ||
while (stopFlag === false && counter++ < list.length - 1){ | ||
if (!predicate(list[ counter ])){ | ||
@@ -9,0 +9,0 @@ stopFlag = true |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1018603
430
16026