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

preffy-extend

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

preffy-extend

A version of the extend package that supports preferring types

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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.

Keywords

FAQs

Package last updated on 31 Dec 2013

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