yhtml5-test
Version:
A test framework for front-end projects
26 lines (14 loc) • 436 B
Markdown
# object-values [](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)