Files
codeql/javascript/ql/examples/snippets/exportfn.ql
2019-08-02 15:33:40 +02:00

17 lines
350 B
Plaintext

/**
* @id js/examples/exportfn
* @name Default exports exporting a function
* @description Finds 'default' exports that export a function
* @tags module
* export
* default export
* ECMAScript 6
* ECMAScript 2015
*/
import javascript
from ExportDefaultDeclaration e
where e.getOperand() instanceof Function
select e