Update underscore.js to 1.13.6

This commit is contained in:
Konstantin Kireyev
2024-03-06 21:54:19 +05:00
parent fdb13cb1de
commit 76bd9973a0
393 changed files with 196028 additions and 5989 deletions

View File

@ -0,0 +1,4 @@
// Is a given variable undefined?
export default function isUndefined(obj) {
return obj === void 0;
}