Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

arrayq

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arrayq

Array query methods for Node.js

  • 0.1.14
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-arrayq

Array query methods for Node.js

Usage

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

Methods

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

Package last updated on 02 Mar 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc