# eswalk

> Walk an Esprima parse tree

Latest version **1.0.2** (published 2014-05-12) · BSD license · 0 weekly downloads

## Install

```sh
npm install eswalk
pnpm add eswalk
yarn add eswalk
bun add eswalk
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2014-05-12 |
| First published | 2014-05-12 |
| Weekly downloads | 0 |
| License | BSD |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Aria Stewart |
| Maintainers | aredridel |
| Keywords | esprima |

## Links

- npm: https://www.npmjs.com/package/eswalk
- Repository: https://github.com/OnlineBuddies/eswalk
- Issues: https://github.com/OnlineBuddies/eswalk/issues
- npm.io page: https://npm.io/package/eswalk

## Recent versions

- 1.0.2 (latest) — 2014-05-12
- 1.0.1 — 2014-05-12
- 1.0.0 — 2014-05-12

## README

eswalk
======

Walks an Esprima parse tree

Example:

    var eswalk = require('eswalk');

    eswalk(tree, function(node, parent) {
        if (node.type == 'ExpressionStatement' &&
            node.expression.type == 'CallExpression' &&
            node.expression.callee.name == 'define') {
            doSomethingWith(node.expression);
        }
    });

---
_Source: https://npm.io/package/eswalk · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
