Detalhes do pacote

estree-is-function

goto-bus-stop1.8mApache-2.01.0.0

check if an AST node is a function of some sort

arrow-function, check, detect, estree

readme (leia-me)

estree-is-function

check if an AST node is a function of some sort.

npm travis standard

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

License

Apache-2.0