Files
30-seconds-of-code/test/isPlainObject/isPlainObject.js
2018-02-04 17:38:39 +02:00

2 lines
124 B
JavaScript

const isPlainObject = val => !!val && typeof val === 'object' && val.constructor === Object;
module.exports = isPlainObject;