OpenStreetMap-Service/node_modules/validator/es/lib/util/nullUndefinedCheck.js

3 lines
100 B
JavaScript
Raw Permalink Normal View History

2026-03-26 23:38:21 +08:00
export default function isNullOrUndefined(value) {
return value === null || value === undefined;
}