Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Array query methods for Node.js
npm install --save arrayq
TypeScript - Extending Array prototype
import 'arrayq';
[1, 2, 3, 4, 5].qIntersect([3, 4, 5, 6, 7]).qSame([3, 4, 5]) === true
TypeScript - Import
import { intersect, same } from 'arrayq/lib';
same(intersect([1, 2, 3, 4, 5], [3, 4, 5, 6, 7]), [3, 4, 5]) === true
ES6 - Extending Array prototype
require('arrayq/es6/prototype')
[1, 2, 3, 4, 5].qIntersect([3, 4, 5, 6, 7]).qSame([3, 4, 5]) === true
ES6 - Require
const { same, intersect } = require('arrayq/es6');
same(intersect([1, 2, 3, 4, 5], [3, 4, 5, 6, 7]), [3, 4, 5]) === true
Contains
Check whether the first array contains all items of the right.
[1, 2, 3, 4, 5].qContains([1, 3, 5])
returns true
[1, 2, 3, 4, 5].qContains([4, 5, 6])
returns false
Empty
Same as [].length === 0
[].qEmpty()
returns true
[1].qEmpty()
returns false
First
Returns first (matching) item.
[1, 2, 3, 4, 5].qFirst()
returns 1
[1, 2, 3, 4, 5].qFirst(x => x%2 === 0)
returns 2
Last
Returns last (matching) item.
[1, 2, 3, 4, 5].qLast()
returns 5
[1, 2, 3, 4, 5].qLast(x => x%2 === 0)
returns 4
Intersect
Returns intersection of items from both arrays.
[1, 2, 3, 4, 5].qIntersect([3, 4, 5, 6, 7])
returns [3, 4, 5]
[1, 2, 3].qIntersect([2, 4, 7], (l, r) => l === r/2)
returns [1, 2]
Rotate
Rotates items using the specified offset.
[1, 2, 3, 4, 5].qRotate(1)
returns [5, 1, 2, 3, 4]
[1, 2, 3, 4, 5].qRotate(-1)
returns [2, 3, 4, 5, 1]
Same
Checks equality between two arrays (order is important).
[1, 2, 3].qSame([1, 2, 3])
returns true
[1, 2, 3].qSame([1, 2])
returns false
[1, 2, 3].qSame([2, 4, 6], (l, r) => l === r/2)
returns true
FAQs
Array query methods for Node.js
The npm package arrayq receives a total of 0 weekly downloads. As such, arrayq popularity was classified as not popular.
We found that arrayq 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.