Files
n8n-nodes-gwezz-changdunovel/node_modules/eslint-plugin-import-x/lib/utils/static-require.js
2025-10-26 23:10:15 +08:00

10 lines
355 B
JavaScript

export 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');
}
//# sourceMappingURL=static-require.js.map