fill-keys

Fill keys in a destination that are defined on the source

MIT 4 个版本
安装
npm install fill-keys
yarn add fill-keys
pnpm add fill-keys
bun add fill-keys
README

fill-keys

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

const 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.

License

MIT © Ben Drucker

版本列表
2.0.0 2022-10-14
1.0.2 2015-10-05
1.0.1 2015-06-02
1.0.0 2015-05-19