# @f/extend

> Simple shallow extend implementation

Latest version **1.0.0** (published 2016-03-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install @f/extend
pnpm add @f/extend
yarn add @f/extend
bun add @f/extend
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-03-18 |
| First published | 2016-03-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | f |

## Links

- npm: https://www.npmjs.com/package/@f/extend
- Repository: https://github.com/micro-js/extend
- Homepage: https://github.com/micro-js/extend#readme
- Issues: https://github.com/micro-js/extend/issues
- npm.io page: https://npm.io/package/@f/extend

## Dependencies (1)

- [@f/foreach-obj](https://npm.io/package/@f/foreach-obj.md) ^1.0.1

## Recent versions

- 1.0.0 (latest) — 2016-03-18

## README

# extend

[![Build status][travis-image]][travis-url]
[![Git tag][git-image]][git-url]
[![NPM version][npm-image]][npm-url]
[![Code style][standard-image]][standard-url]

Simple shallow extend implementation

## Installation

    $ npm install @f/extend

## Usage

```js
var extend = require('@f/extend')

extend({}, defaultOpts, opts)
```

## API

### extend(dst, ...objs)

- `dst` - The destination object to copy the properties of `...objs` into
- `...objs` - A variable length list of objects who's properties you want to copy into `dst`. They will be copied in increasing order of precedence (i.e. those that come later will overwrite those that come earlier)

**Returns:** `dst`

## License

MIT

[travis-image]: https://img.shields.io/travis/micro-js/extend.svg?style=flat-square
[travis-url]: https://travis-ci.org/micro-js/extend
[git-image]: https://img.shields.io/github/tag/micro-js/extend.svg?style=flat-square
[git-url]: https://github.com/micro-js/extend
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square
[standard-url]: https://github.com/feross/standard
[npm-image]: https://img.shields.io/npm/v/@f/extend.svg?style=flat-square
[npm-url]: https://npmjs.org/package/@f/extend

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