2022-12-08 17:38:04 +01:00
|
|
|
diff --git a/commonjs/helpers.js b/commonjs/helpers.js
|
|
|
|
index 0ac28b4d6a715e913da246f1b4b2576c7e5537f4..d048c0a9b498d08fb70337558fa541c1ecc2ed32 100644
|
|
|
|
--- a/commonjs/helpers.js
|
|
|
|
+++ b/commonjs/helpers.js
|
2021-04-20 05:37:21 +02:00
|
|
|
@@ -21,7 +21,7 @@ var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
|
|
function hasOwnProperty(obj, key) {
|
|
|
|
return _hasOwnProperty.call(obj, key);
|
|
|
|
}
|
|
|
|
-exports.hasOwnProperty = hasOwnProperty;
|
|
|
|
+Object.defineProperty(exports, "hasOwnProperty", { value: hasOwnProperty });
|
|
|
|
function _objectKeys(obj) {
|
|
|
|
if (Array.isArray(obj)) {
|
2022-12-08 17:38:04 +01:00
|
|
|
var keys = new Array(obj.length);
|