Travis build: 1321

This commit is contained in:
30secondsofcode
2018-01-19 12:01:55 +00:00
parent 1cdc03acbb
commit 17abe97036
3 changed files with 29 additions and 2 deletions

View File

@ -9,6 +9,6 @@ const isPlainObject = val => !!val && typeof val === 'object' && val.constructor
```
```js
isPlainObject({ 'a': 1 }); // true
isPlainObject({ a: 1 }); // true
isPlainObject(new Map()); // false
```