Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / istanbul / node_modules / esprima / README.md
1 **Esprima** ([esprima.org](http://esprima.org), BSD license) is a high performance,
2 standard-compliant [ECMAScript](http://www.ecma-international.org/publications/standards/Ecma-262.htm)
3 parser written in ECMAScript (also popularly known as
4 [JavaScript](https://en.wikipedia.org/wiki/JavaScript)).
5 Esprima is created and maintained by [Ariya Hidayat](https://twitter.com/ariyahidayat),
6 with the help of [many contributors](https://github.com/jquery/esprima/contributors).
7
8 ### Features
9
10 - Full support for ECMAScript 6 ([ECMA-262](http://www.ecma-international.org/publications/standards/Ecma-262.htm))
11 - Sensible [syntax tree format](https://github.com/estree/estree/blob/master/spec.md) as standardized by [EStree project](https://github.com/estree/estree)
12 - Optional tracking of syntax node location (index-based and line-column)
13 - Heavily tested (~1200 [unit tests](https://github.com/jquery/esprima/tree/master/test/fixtures) with [full code coverage](https://travis-ci.org/jquery/esprima))
14
15 Esprima serves as a **building block** for some JavaScript
16 language tools, from [code instrumentation](http://esprima.org/demo/functiontrace.html)
17 to [editor autocompletion](http://esprima.org/demo/autocomplete.html).
18
19 Esprima runs on many popular web browsers, as well as other ECMAScript platforms such as
20 [Rhino](http://www.mozilla.org/rhino), [Nashorn](http://openjdk.java.net/projects/nashorn/), and [Node.js](https://npmjs.org/package/esprima).
21
22 For more information, check the web site [esprima.org](http://esprima.org).