# extend-options

> Basic object extending for two Javascript hash objects, intended for merging options.

Latest version **0.0.1** (published 2014-12-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install extend-options
pnpm add extend-options
yarn add extend-options
bun add extend-options
```

## 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.0.1 |
| Published | 2014-12-02 |
| First published | 2014-12-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | John Otander |
| Maintainers | johno |
| Keywords | merge, options, object, extend |

## Links

- npm: https://www.npmjs.com/package/extend-options
- Repository: https://github.com/johnotander/extend-options
- Issues: https://github.com/johnotander/extend-options/issues
- npm.io page: https://npm.io/package/extend-options

## Recent versions

- 0.0.1 (latest) — 2014-12-02

## README

# Extend Options

Basic object extending for two Javascript hash objects, intended for merging provided
options with defaults.

## Installation

```
npm i --save extend-options
```

## Usage

```javascript
var extendOptions = require('extend-options');

var options = {
  a: 'a',
  c: 'c'
}

extendOptions({ a: 1, b: 2, c: 3 }, options);
// => { a: 'a', b: 2, c: 3 }
```

## License

MIT

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Crafted with <3 by [John Otander](http://johnotander.com) ([@4lpine](https://twitter.com/4lpine)).

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