Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / 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](http://en.wikipedia.org/wiki/JavaScript>JavaScript)).
5 Esprima is created and maintained by [Ariya Hidayat](http://twitter.com/ariyahidayat),
6 with the help of [many contributors](https://github.com/ariya/esprima/contributors).
7
8 ### Features
9
10 - Full support for ECMAScript 5.1 ([ECMA-262](http://www.ecma-international.org/publications/standards/Ecma-262.htm))
11 - Sensible [syntax tree format](http://esprima.org/doc/index.html#ast) compatible with Mozilla
12 [Parser AST](https://developer.mozilla.org/en/SpiderMonkey/Parser_API)
13 - Optional tracking of syntax node location (index-based and line-column)
14 - Heavily tested (> 650 [unit tests](http://esprima.org/test/) with [full code coverage](http://esprima.org/test/coverage.html))
15 - [Partial support](http://esprima.org/doc/es6.html) for ECMAScript 6
16
17 Esprima serves as a **building block** for some JavaScript
18 language tools, from [code instrumentation](http://esprima.org/demo/functiontrace.html)
19 to [editor autocompletion](http://esprima.org/demo/autocomplete.html).
20
21 Esprima runs on many popular web browsers, as well as other ECMAScript platforms such as
22 [Rhino](http://www.mozilla.org/rhino), [Nashorn](http://openjdk.java.net/projects/nashorn/), and [Node.js](https://npmjs.org/package/esprima).
23
24 For more information, check the web site [esprima.org](http://esprima.org).