projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
406a2797b682df8170a7c07e4703983a9b6f0664
[platform/framework/web/crosswalk-tizen.git]
/
1
define(function () {
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
return isPlainObject;
12
13
});