securityos/node_modules/eslint-plugin-unicorn/rules/ast/is-undefined.js

8 lines
142 B
JavaScript

'use strict';
function isUndefined(node) {
return node.type === 'Identifier' && node.name === 'undefined';
}
module.exports = isUndefined;