🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@byte-this/funscript

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@byte-this/funscript - npm Package Compare versions

Comparing version

to
1.0.38

2

package.json
{
"name": "@byte-this/funscript",
"version": "1.0.37",
"version": "1.0.38",
"description": "A typescript API which facilitates functional programming.",

@@ -5,0 +5,0 @@ "main": "public-api.js",

@@ -15,2 +15,3 @@ import { IterableList } from "../models/iterable-list";

static join<T>(list: IterableList<T>, sep: string): string;
static firstElement<T>(list: IterableList<T>): T | undefined;
/**

@@ -17,0 +18,0 @@ * Given two iterables, return their intersection

@@ -27,2 +27,9 @@ /**

}
static firstElement(list) {
// return the first element
for (const el of list) {
return el;
}
return void 0;
}
/**

@@ -29,0 +36,0 @@ * Given two iterables, return their intersection