UNPKG

eslint-plugin-codebox

Version:
12 lines (11 loc) 302 B
export default function isStaticRequire(node) { return ( node && node.callee && node.callee.type === 'Identifier' && node.callee.name === 'require' && node.arguments.length === 1 && node.arguments[0].type === 'Literal' && typeof node.arguments[0].value === 'string' ) }