
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@arecalde/nnmap
Advanced tools
A function for selectively mapping through arrays
function returnIfEven(n: any): any | null {
return (n % 2 === 0) ? n : null;
}
function quitIfThree(n: any): boolean {
if (n === 3) return true;
return false;
}
function quitOnThirdItem(n: any, index: number): boolean {
if (index >= 3) return true;
return false;
}
// skip nulls
const evenValues = nnmap([1, 2, 3, 4, 5, 6], returnIfEven); // [2, 4, 6]
// quit when value is 3
const quitWhenThree = nnmap([1, 2, 3, 4, 5]), (n) => n, quitIfThree); // [1, 2]
// map until the third index (maps indexes 0, 1, 2)
const firstThreeMappedItems = nnmap([1, 2, 3, 4, 5]), (n) => n, quitOnThirdItem); // [1, 2, 3]
Parameters
Name | type | Description |
---|---|---|
arr | any[] | The array to be mapped |
cb | Callback | The mapping callback function |
qcb? | QuitCallback | If this callback returns true, nnmap quits immediately |
// example
const mappedArray = nnmap([]), (n) => n, (n, i) => null);
cb: Callback
Whatever this callback returns is inserted in the resulting array
Parameters
Name | type | Description |
---|---|---|
currentItem | any | The current array item to map to a new value |
(item) => item.foo
qcb?: QuitCallback
When this callback returns true, nnmap quits immediately and returns an array with the values mapped up to this point
Name | type | Description |
---|---|---|
currentItem | any[] | The current array item to map to a new value |
currentIndex | number | The current index being mapped |
// quit based on the current value
(item) => item.quit === true;
// quit based on the current index
(item, index) => index > 10;
FAQs
Array mapping ignoring null values
We found that @arecalde/nnmap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.