Files
JiboSDK/node_modules/underscore/modules/isUndefined.js

5 lines
104 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
// Is a given variable undefined?
export default function isUndefined(obj) {
return obj === void 0;
}