dld_backend/node_modules/underscore/amd/isNull.js
2025-10-30 12:13:02 +05:30

11 lines
136 B
JavaScript

define(function () {
// Is a given value equal to null?
function isNull(obj) {
return obj === null;
}
return isNull;
});