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

array-key-object-uniq

v0.5.0

Published

> do you have needs check duplicate value inside complex item array ?

Downloads

3

Readme

array-key-object-uniq

do you have needs check duplicate value inside complex item array ?

installation

  • npm install array-key-object-uniq --save

  • yarn add array-key-object-uniq

usage

index.js


const arrayKeyObjectUniq = require('array-key-object-uniq') ;

const myArray = [
    {
        username: "Foo",
        isLicorn: false
    } , {
        username: "Bar",
        isLicorn: false
    } , {
        username: "FooBar",
        isLicorn: true
    }, {
        username: "Foo",
        isLicorn: false
    }
] ;

const resolveMyArray = arrayKeyObjectUniq( myArray ) ;

console.log( resolveMyArray ) ;

output

[
    "Foo",false,
    "Bar",
    "FooBar",true
]

inline array

you can just transform your complex array in inline array with: require('array-key-object-uniq/lib/inline-transform')

inline array usage

index.js

const inlineArray = require('array-key-object-uniq/lib/inline-transform') ;

const myArray = [
    {
        username: "Foo",
        isLicorn: false
    } , {
        username: "Bar",
        isLicorn: false
    } , {
        username: "FooBar",
        isLicorn: true
    }, {
        username: "Foo",
        isLicorn: false
    }
] ;

const myInlineArray = inlineArray( myArray ) ;

console.log( myInlineArray ) ;

output

[
    "Foo", false,
    "Bar", false,
    "FooBar", true,
    "Foo", false
]

The inline-array module not applicate filter this the module call by array-key-object-uniq before filter final values, if you have needs applicate custom filter, you should use: inline-array module.

currently inline-array is not installable in standalone this is possible for next minor version: 0.6.0.