Files
2022-03-23 14:44:28 -05:00

5 lines
97 B
JavaScript

var isUndefined = function(x){
return typeof(x)==="undefined";
}
export default isUndefined;