Gathering detailed insights and metrics for @basic-streams/ap
Gathering detailed insights and metrics for @basic-streams/ap
Gathering detailed insights and metrics for @basic-streams/ap
Gathering detailed insights and metrics for @basic-streams/ap
npm install @basic-streams/ap
Typescript
Module System
Node Version
NPM Version
TypeScript (83.84%)
JavaScript (16.16%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
70 Stars
248 Commits
4 Forks
5 Watchers
1 Branches
2 Contributors
Updated on Feb 20, 2025
Latest Version
1.0.0
Package Id
@basic-streams/ap@1.0.0
Unpacked Size
4.77 kB
Size
2.27 kB
File Count
8
NPM Version
6.1.0
Node Version
10.5.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1ap<T, U>(streamf: Stream<(x: T) => U>, streamv: Stream<T>): Stream<U>
Creates a stream that will contain values created by applying the latest
function from streamf
to the latest value from streamv
every time one of
them updates.
1import ofMany from "@basic-streams/of-many" 2import ap from "@basic-streams/ap" 3 4const streamf = ofMany([x => x + 2, x => x - 2], 10000) 5const streamv = ofMany([1, 2, 3], 8000) 6 7const result = ap(streamf, streamv) 8 9result(x => { 10 console.log(x) 11}) 12 13// > 3 14// > 4 15// > 0 16// > 1 17 18// x => x + 2 x => x - 2 19// streamf: _________._________. 20// streamv: _______1_______2_______3 21// result: _________3_____4___0___1
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/19 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
48 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More