7fife-backend/node_modules/underscore/modules/isUndefined.js

5 lines
104 B
JavaScript
Raw Permalink Normal View History

2024-03-07 13:01:44 +00:00
// Is a given variable undefined?
export default function isUndefined(obj) {
return obj === void 0;
}