# dextend

> Deep extend for your JS objects

Latest version **0.1.1** (published 2013-09-19) · 0 weekly downloads

## Install

```sh
npm install dextend
pnpm add dextend
yarn add dextend
bun add dextend
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2013-09-19 |
| First published | 2013-09-19 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | * |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Vladyslav Millier |
| Maintainers | vmiller |
| Keywords | extend, objects, deep |

## Links

- npm: https://www.npmjs.com/package/dextend
- Repository: https://github.com/maxmara/dextend
- Issues: https://github.com/maxmara/dextend/issues
- npm.io page: https://npm.io/package/dextend

## Recent versions

- 0.1.1 (latest) — 2013-09-19

## README

dExtend (Deep Extend)

This simple module allows you to merge any objects. It can be useful when your application have a lot of separate
config files you want to compile in the same project (Great example is Magento xml configs)

Installation
------------

dExtend is only available trough github repositories. Download and unpack this module into node_modules folder.


Example
-------

var d = require('dextend');

var obj1 = {
    'this': 'is_sparta',
    'sparta': {
        'is': 'here',
        'and': 'here'
    }
}

var obj2 = {
    'this': 'is_dextend',
    'sparta': 'is not here'
}

var final = d.extend(obj1, obj2);
console.log(final);

---
_Source: https://npm.io/package/dextend · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
