Show More
Commit Description:
add model solution
Commit Description:
add model solution
References:
File last commit:
Show/Diff file:
Action:
node_modules/estree-is-function/README.md
| 34 lines
| 965 B
| text/x-minidsrc
| MarkdownLexer
|
estree-is-function
check if an AST node is a function of some sort.
Install
npm install estree-is-function
Usage
var isFunction = require('estree-is-function') isFunction(parse('function a () {}')) // true isFunction(parse('(function () {})')) // true isFunction(parse('(() => {})')) // true isFunction(parse('var x')) // false