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 🙏

© 2026 – Pkg Stats / Ryan Hefner

preffy-extend

v0.0.1

Published

A version of the extend package that supports preferring types

Readme

preffy-extend()

preffy-extend is based on the classic extend() method from jQuery, but allows for certain types to be preferred, and not replace others.

Installation

This package is available on npm as: preffy-extend

npm install preffy-extend

Usage

Syntax: prefex ( preferred, [deep], target, object1, [objectN] )

Extend one object with one or more others, returning the modified object.

Keep in mind that the target object will be modified, and will be returned from prefex(). If you don't want to modify the target, set the target to an empty object ({}), and include the others after.

If a boolean true is specified as the second argument, extend performs a deep copy, recursively copying any objects it finds. Otherwise, the copy will share structure with the original object(s). Deep copies receive the same preferred array as the original. Undefined properties are not copied. However, properties inherited from the object's prototype will be copied over.

Arguments

  • preferred Array The listing of types to prefer (see below).
  • deep Boolean (optional)
    If set, the merge becomes recursive (i.e. deep copy).
  • target Object
    The object to extend.
  • object1 Object
    The object that will be merged into the first.
  • objectN Object (Optional)
    More objects to merge into the first.

Preferred types

The preferred array should be given like this: ['object','string']. This means that properties of type object will replace anything (have weight of 1), type string replaces anything except for objects (weight 0), and anything else has weight -1. In other words, the weights are the index of the typeof in the array, reversed.

Known limitations

  • Arrays are treated the same as objects (because that's what JS typeof does)
  • There's no way to set different types to have the same weight

Please report any others in the issue tracker.

Examples

prefex(['number'],{a:1,b:2,c:3},{d:4,a:'a'}) // { a: 1, b: 2, c: 3, d: 4 }
prefex([''],{a:1,b:2,c:3},{d:4,a:'a'}) // { a: 'a', b: 2, c: 3, d: 4 }
prefex(['object','string'],true,{a:1,b:'b',c:{d:4,e:'e'}},{a:'a',b:2,c:{d:true,e:false}}) // { a: 'a', b: 'b', c: { d: true, e: 'e' } }

Browser

The index.js file in preffy-extend can be included in client-side scripting as well with no problem. I simply recommend renaming it.

License

preffy-extend is licensed under the [MIT License][3].

Acknowledgements

Credit to the jQuery authors for creating the original.

jQuery version ported to Node.js by Stefan Thomas with contributions by Jonathan Buchanan and Jordan Harband.

Extended by Scimonster to support preferential types.