fromit:Linq for js Iterables

时间:2024-03-07 10:23:35
【文件属性】:

文件名称:fromit:Linq for js Iterables

文件大小:106KB

文件格式:ZIP

更新时间:2024-03-07 10:23:35

linq iterables TypeScript

从中 使用生成器的Linq样式(如c#) npm install fromit import { from } from "fromit" const list = new Set ( [ 1 , 2 , 3 ] ) ; expect ( from ( list ) . filter ( x => x > 2 ) . first ( ) ) . toBe ( 3 ) ; const a = [ 1 , 2 , 3 ] ; const b = [ 3 , 4 , 5 ] ; let r = from ( a ) . intersect ( b ) ; expect ( r . count ( ) ) . toBe ( 1 ) ; // used with async await async function * generator ( ) { yield 1 yield 2 yie


【文件预览】:
fromit-master
----package.json(755B)
----jest.config.js(106B)
----LICENSE(1KB)
----package-lock.json(366KB)
----src()
--------run.ts(28B)
--------async.ts(7KB)
--------index.spec.ts(4KB)
--------index.ts(8KB)
----.npmignore(75B)
----tsconfig.json(5KB)
----.gitignore(2KB)
----README.md(752B)
----.gitpod.yml(130B)
----.vscode()
--------launch.json(1KB)

网友评论