🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

lazily

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lazily - npm Package Compare versions

Comparing version

to
0.0.17

4

dist/lazily.js

@@ -26,3 +26,3 @@ "use strict";

static of(list) {
return list instanceof Array ? new Seq(sequence(list)) : list instanceof Seq ? list : new Seq(list);
return Array.isArray(list) ? new Seq(sequence(list)) : list instanceof Seq ? list : new Seq(list);
}

@@ -41,3 +41,3 @@

concat(seq) {
return new Seq(concat(this.seq, Array.isArray(seq) ? sequence(seq) : seq.seq));
return new Seq(concat(this.seq, Array.isArray(seq) ? sequence(seq) : seq instanceof Seq ? seq.seq : seq));
}

@@ -44,0 +44,0 @@

{
"name": "lazily",
"version": "0.0.16",
"version": "0.0.17",
"author": "Jeswin<jeswinpk@agilehead.com>",

@@ -5,0 +5,0 @@ "scripts": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet