b81342eee25ab148db15b98280a6d84e5af636d4
[platform/framework/web/crosswalk-tizen.git] /
1
2
3     /**
4      * Checks if the value is created by the `Object` constructor.
5      */
6     function isPlainObject(value) {
7         return (!!value && typeof value === 'object' &&
8             value.constructor === Object);
9     }
10
11     module.exports = isPlainObject;
12
13