[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]test/2023-10-19 15:45 -  
[   ]LICENSE2023-10-19 15:45 727 f0d2fc9 test post-receive hook [كارل مبارك]
[TXT]README.md2023-10-19 15:45 844 15de0e0 styling, texts [كارل مبارك]
[TXT]index.d.ts2023-10-19 15:45 93  
[   ]index.js2023-10-19 15:45 407 15de0e0 styling, texts [كارل مبارك]
[   ]package.json2023-10-19 15:45 1.2K120707f added node version q18.16 to dependincies [كارل مبارك]
# Polyfill for `Object.setPrototypeOf`

[![NPM Version](https://img.shields.io/npm/v/setprototypeof.svg)](https://npmjs.org/package/setprototypeof)
[![NPM Downloads](https://img.shields.io/npm/dm/setprototypeof.svg)](https://npmjs.org/package/setprototypeof)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://github.com/standard/standard)

A simple cross platform implementation to set the prototype of an instianted object.  Supports all modern browsers and at least back to IE8.

## Usage:

```
$ npm install --save setprototypeof
```

```javascript
var setPrototypeOf = require('setprototypeof')

var obj = {}
setPrototypeOf(obj, {
  foo: function () {
    return 'bar'
  }
})
obj.foo() // bar
```

TypeScript is also supported:

```typescript
import setPrototypeOf from 'setprototypeof'
```