6 lines
81 B
JavaScript
6 lines
81 B
JavaScript
function isUndefined(x) {
|
|
return x === undefined;
|
|
}
|
|
|
|
export { isUndefined };
|