Skip to content

micro-js/extend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

extend

Build status Git tag NPM version Code style

Simple shallow extend implementation

Installation

$ npm install @f/extend

Usage

var extend = require('@f/extend')

extend({}, defaultOpts, opts)

API

extend(dst, ...objs)

  • dst - The destination object to copy the properties of ...objs into
  • ...objs - A variable length list of objects who's properties you want to copy into dst. They will be copied in increasing order of precedence (i.e. those that come later will overwrite those that come earlier)

Returns: dst

License

MIT