Bump to v4.16.3.

This commit is contained in:
John-David Dalton
2016-10-02 22:00:47 -07:00
parent ac571efbbd
commit eb1446def5
16 changed files with 213 additions and 176 deletions

11
_defineProperty.js Normal file
View File

@@ -0,0 +1,11 @@
var getNative = require('./_getNative');
var defineProperty = (function() {
try {
var func = getNative(Object, 'defineProperty');
func({}, '', {});
return func;
} catch (e) {}
}());
module.exports = defineProperty;