8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
|
'use strict';
|
||
|
|
||
|
function isUndefined(node) {
|
||
|
return node.type === 'Identifier' && node.name === 'undefined';
|
||
|
}
|
||
|
|
||
|
module.exports = isUndefined;
|