Files
30-seconds-of-code/test/isPlainObject/isPlainObject.js
2018-08-02 13:49:33 +03:00

3 lines
125 B
JavaScript

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