goto-bus-stop / estree-is-function

check if an AST node is a function of some sort

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

check if an AST node is a function of some sort

License:Other


Languages

Language:JavaScript 100.0%