# simple-assign

> Simple implementation of Object.assign

Latest version **0.1.0** (published 2016-02-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install simple-assign
pnpm add simple-assign
yarn add simple-assign
bun add simple-assign
```

## Health

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

Positive: has types package; no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2016-02-02 |
| First published | 2016-02-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/simple-assign) |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Neil Gabbadon |
| Maintainers | neilgabbadon |

## Links

- npm: https://www.npmjs.com/package/simple-assign
- Repository: https://github.com/newoga/simple-assign
- Homepage: https://github.com/newoga/simple-assign#readme
- Issues: https://github.com/newoga/simple-assign/issues
- npm.io page: https://npm.io/package/simple-assign

## Recent versions

- 0.1.0 (latest) — 2016-02-02

## README

## simple-assign

This is a simple implementation `Object.assign` that has been graciously stolen from [babel's extends helper](https://github.com/babel/babel/blob/v6.4.6/packages/babel-helpers/src/helpers.js#L165-L177).

**Note:** This is just the function implementation. It is **not** a ponyfill and it  **does not** check for the existence of `Object.assign` for you. To make a true [ponyfill](https://kikobeats.com/polyfill-ponyfill-and-prollyfill/) that returns the native implementation if available, you can do something like this:

**Example:**
```js
import assign from 'simple-assign';

export default Object.assign || assign;
```

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