Created
April 25, 2021 11:19
-
-
Save julrich/879b4fde21a21f6c1d80d638d1f6cdeb to your computer and use it in GitHub Desktop.
Difference in basePropertyOf demo vs project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function basePropertyOf(e) { | |
return function (t) { | |
return null == e ? void 0 : e[t] | |
} | |
} | |
var _basePropertyOf = basePropertyOf, | |
... | |
deburrLetter = _basePropertyOf(deburredLetters), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function basePropertyOf$1(e) { | |
return function (t) { | |
return null == e ? void 0 : e[t] | |
} | |
} | |
var _basePropertyOf = basePropertyOf$1, | |
_basePropertyOf$1 = Object.freeze(Object.assign(Object.create(null), _basePropertyOf, { | |
[ | |
Symbol.toStringTag | |
]: 'Module', | |
default: | |
_basePropertyOf | |
})), | |
basePropertyOf = getAugmentedNamespace(_basePropertyOf$1), | |
... | |
deburrLetter$1 = basePropertyOf(deburredLetters), // <- THIS IS WHERE THE ERROR HAPPENS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment