6 lines
75 B
JavaScript
6 lines
75 B
JavaScript
|
|
export function isDefined(vbl){
|
|
return(typeof vbl !== 'undefined')
|
|
}
|
|
|