Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rambda

Package Overview
Dependencies
Maintainers
1
Versions
203
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rambda - npm Package Compare versions

Comparing version 5.13.0 to 5.13.1

2

dist/rambda.esm.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc