7e3c82aeb8af413424dcc72aaf7af5b9df94483c
[platform/framework/web/crosswalk-tizen.git] /
1
2
3     /**
4      * Safer Object.hasOwnProperty
5      */
6      function hasOwn(obj, prop){
7          return Object.prototype.hasOwnProperty.call(obj, prop);
8      }
9
10      module.exports = hasOwn;
11
12