PAMapp/node_modules/core-js/internals/is-object.js
@@ -1,5 +1,5 @@ var isCallable = require('../internals/is-callable'); module.exports = function (it) { return typeof it === 'object' ? it !== null : isCallable(it); return typeof it == 'object' ? it !== null : isCallable(it); };