1. fill-keys
Fill keys in a destination that are defined on the source
fill-keys
Package: fill-keys
Created by: bendrucker
Last modified: Fri, 14 Oct 2022 16:23:13 GMT
Version: 2.0.0
License: MIT
Downloads: 1,858,850
Repository: https://github.com/bendrucker/fill-keys

Install

npm install fill-keys
yarn add fill-keys

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

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code