# object-values [![Build Status](https://travis-ci.org/sindresorhus/object-values.svg?branch=master)](https://travis-ci.org/sindresorhus/object-values)

> Get the values of an object

Returns an array of own enumerable property values of an object.


## Install

```sh
$ npm install --save object-values
```


## Usage

```js
objectValues({foo: 0, bar: 1});
//=> [0, 1]
```


## License

MIT © [Sindre Sorhus](http://sindresorhus.com)
