Skip to content

Commit

Permalink
[Refactor] avoid top-level return, because babel and webpack are broken
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 17, 2019
1 parent 44bafb6 commit 830f839
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
var $WeakMap = typeof WeakMap === 'function' && WeakMap.prototype ? WeakMap : null;
var $WeakSet = typeof WeakSet === 'function' && WeakSet.prototype ? WeakSet : null;

var exported;

if (!$WeakMap) {
// eslint-disable-next-line no-unused-vars
module.exports = function isWeakMap(x) {
exported = function isWeakMap(x) {
// `WeakMap` is not present in this environment.
return false;
};
return;
}

var $mapHas = $WeakMap ? $WeakMap.prototype.has : null;
var $setHas = $WeakSet ? $WeakSet.prototype.has : null;
if (!$mapHas) {
if (!exported && !$mapHas) {
// eslint-disable-next-line no-unused-vars
module.exports = function isWeakMap(x) {
exported = function isWeakMap(x) {
// `WeakMap` does not have a `has` method
return false;
};
return;
}

module.exports = function isWeakMap(x) {
module.exports = exported || function isWeakMap(x) {
if (!x || typeof x !== 'object') {
return false;
}
Expand Down

0 comments on commit 830f839

Please sign in to comment.