fill-keys
Fill keys in a destination that are defined on the source
Last updated 11 years ago by bendrucker .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install fill-keys 
SYNC missed versions from official npm registry.

fill-keys Build Status

Fill keys in a destination that are defined on the source. Copies descriptors so properties like enumerable will persist.

Install

$ npm install --save fill-keys

Usage

var fillKeys = require('fill-keys');

fillKeys(destination, source);
//=> missing destination keys in source are copied

fill-keys will copy descriptors. It will also copy the source.prototype properties onto destination.prototype if both destination and source are functions.

API

fillKeys(destination, source) -> destination

destination

Required
Type: any

The destination object where keys from source will be added.

source

Required
Type: any

The source object from which to copy properties.

fillKeys.es3(destination, source) -> destination

An ES3-compatible version of fillKeys. Behavior is identical but simple assignment is used instead of Object.defineProperty.

License

MIT © Ben Drucker

Current Tags

  • 1.0.2                                ...           latest (11 years ago)

3 Versions

  • 1.0.2                                ...           11 years ago
  • 1.0.1                                ...           11 years ago
  • 1.0.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (2)
Dev Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |