npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, πŸ‘‹, I’m Ryan HefnerΒ  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you πŸ™

Β© 2024 – Pkg Stats / Ryan Hefner

@novigi/array

v1.0.0-2

Published

Extending the Javascript Array operations to make objects handling a lot simpler πŸ”—

Downloads

2

Readme

npm (scoped) NPM Statements Branches Functions Lines

@novigi/array

Extending the Javascript Array operations to make objects handling a lot simpler πŸ”—

🐿 Features

  • Modify object arrays to contain only the given keys
  • Modify object arrays to remove the keys provided
  • Convert object arrays to JSON String
  • Modify object arrays to filter elements with unique keys

πŸ“¦ Getting Started

  1. Install the dependency
npm install @novigi/array
  1. Import the library
const lib = require('@novigi/array');

πŸ“– Documentation

array

Extending the Javascript Array operations to make objects handling a lot simpler πŸ”—

require('@novigi/array');
[{id: 1, name: 'UserA', age: 33}, {id: 2, name: 'UserB', age: 32}].include(['id', 'name']) // [{"id": 1, "name": "UserA"}, {"id": 2, "name": "UserB"}]
[{id: 1, name: 'UserA', age: 33}, {id: 2, name: 'UserB', age: 32}].exclude(['age']) // [{"id": 1, "name": "UserA"}, {"id": 2, "name": "UserB"}]

Chainable + immutable methods! ☝

array~Array

Extension methods for built in Array object. Most of these methods are returning a new Array object so the API is immutable and chainable.

Kind: inner external of array
Example

new Array().include(['key1', 'key2'])
new Array().exclude(['key1', 'key2'])

array.include(inclusions) β‡’ Array

Extension method for Array of objects to preserve only given keys

Kind: instance method of Array
Returns: Array - an array of objects after filtering inclusions

| Param | Type | Description | | --- | --- | --- | | inclusions | Array | an array of strings indicating the keys to preserve |

Example

[{id: 1, name: 'UserA', age: 33}, {id: 2, name: 'UserB', age: 32}].include(['id', 'name']) // [{"id": 1, "name": "UserA"}, {"id": 2, "name": "UserB"}]

array.exclude(exclusions) β‡’ Array

Extension method for Array of objects to eliminate given keys

Kind: instance method of Array
Returns: Array - an array of objects after filtering exclusions

| Param | Type | Description | | --- | --- | --- | | exclusions | Array | an array of strings indicating the keys to remove |

Example

[{id: 1, name: 'UserA', age: 33}, {id: 2, name: 'UserB', age: 32}].exclude(['age']) // [{"id": 1, "name": "UserA"}, {"id": 2, "name": "UserB"}]

array.flatten() β‡’ Array

Extension method for flattening the object array in to singleβˆ’depth object array

Kind: instance method of Array
Returns: Array - an array after flattening
Example

[{ name: 'test', address: { personalId: 3, office: { buildingExists: true, street: 'some street' } } }].flatten() // [{ name: 'test', address_personalId: 3, address_office_buildingExists: true, address_office_street: 'some street' }]
[{ name: 'test', address: { street: ['some', 'street'] } }].flatten() // [{ name: 'test', address_street_0: 'some', address_street_1: 'street' }]

array.toJson() β‡’ String

Extension method for return a JSON String version of an array object

Kind: instance method of Array
Returns: String - JSON String after converting array object
Example

[{id: 1, name: 'UserA', age: 33}, {id: 2, name: 'UserB', age: 32}].toJson() // '[{"id":1,"name":"UserA","age":33},{"id":2,"name":"UserB","age":32}]'

array.unique(property) β‡’ Array

Extension method for filter array elements with unique keys

Kind: instance method of Array
Returns: Array - an array after filter elements with unique keys

| Param | Type | Description | | --- | --- | --- | | property | Array | an array of strings indicating the keys to unique values |

Example

[ {id: 1, name: "UserA", age: 33}, {id: 2, name: "UserA", age: 32}, {id: 3, name: "UserC", age: 31} ].unique('name') // [ {id: 1, name: "UserA", age: 33}, {id: 3, name: "UserC", age: 31} ]

This is an auto generated file. Please don't make changes manually