1.0.0 • Published 6 years ago

estree-is-function v1.0.0

Weekly downloads
524,981
License
Apache-2.0
Repository
github
Last release
6 years ago

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