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

uas-get-my-keys

v1.0.4

Published

returns an object with only required keys from any nested object or from array of Objects

Downloads

15

Readme

getMyKeys

returns an Object with the keys needed, from a nested object or from an array of nested objects

Params:

1st argument should be any object or set of objects packed in an array.

2nd argument: should be the name of a key to be found in an array or multiple key names packed in an array.

Algorithmic Behavior:

The function creates an empty object to return;

Another function called 'GetMyKeysInner' iterates over every object TYPE found in the 1st param, and searches for any key present matching from the second param.

If any is found, it is added to the returing object.

If any duplicate key is found.. the value is returned in the form of an array..

run the test.js for further clearification

DEMO

Install Node Module:

npm install uas-get-my-keys

Method To Call/Use Module:

const getMyKeys = require('uas-get-my-keys');

Then Test Using console.log(getMyKeys(AnyObjectOrArrayOfObjects,['keysName','Or','keyName']));

EXAMPLE:

input params 1; Array Of Objects

[ { k1: 'KEY1', k2: 'KEY1', k3: 'KEY2' }

 {  k4: 'KEY4', k5: 'KEY5', k6: 'KEY6' }

 {  k7: 'KEY7', k8: 'KEY8', k9: 'KEY9' }

 {  k10: 'KEY10', k11: 'KEY11', k12: { k13: 'Key13', k14: 'Key14', k1: 'Key15'}   }


]

input params 2; Array of Required Keys

[ 'key1', 'Key5', 'Key9' ]

output object: (Returned)

{ key1 : [ KEY1, Key15], key5 : KEY5, key9 : KEY9 }