Current File : //lib/node_modules/bower/lib/node_modules/mout/src/object/hasOwn.js
define(function () {

    /**
     * Safer Object.hasOwnProperty
     */
     function hasOwn(obj, prop){
         return Object.prototype.hasOwnProperty.call(obj, prop);
     }

     return hasOwn;

});