Comparing version 1.3.0-beta.1 to 1.3.0
{ | ||
"name": "jsep", | ||
"version": "1.3.0-beta.1", | ||
"version": "1.3.0", | ||
"description": "a tiny JavaScript expression parser", | ||
@@ -5,0 +5,0 @@ "author": "Stephen Oney <swloney@gmail.com> (http://from.so/)", |
@@ -97,14 +97,15 @@ ## jsep: A Tiny JavaScript Expression Parser | ||
#### JSEP-provided plugins: | ||
| | | | ||
| ------------------------------------ | ----------------------------------------------------------------------------------------- | | ||
| [ternary](packages/ternary) | Built-in by default, adds support for ternary `a ? b : c` expressions | | ||
| [arrow](packages/arrow) | Adds arrow-function support: `v => !!v` | | ||
| [assignment](packages/assignment) | Adds assignment and update expression support: `a = 2`, `a++` | | ||
| [comment](packages/comment) | Adds support for ignoring comments: `a /* ignore this */ > 1 // ignore this too` | | ||
| [new](packages/new) | Adds 'new' keyword support: `new Date()` | | ||
| [object](packages/object) | Adds object expression support: `{ a: 1, b: { c }}` | | ||
| [regex](packages/regex) | Adds support for regular expression literals: `/[a-z]{2}/ig` | | ||
| [spread](packages/spread) | Adds support for the spread operator, `fn(...[1, ...a])`. Works with `object` plugin, too | | ||
| [template](packages/template) | Adds template literal support: `` `hi ${name}` `` | | ||
| | | | ||
| | | | ||
|-----------------------------------|-------------------------------------------------------------------------------------------| | ||
| [ternary](packages/ternary) | Built-in by default, adds support for ternary `a ? b : c` expressions | | ||
| [arrow](packages/arrow) | Adds arrow-function support: `v => !!v` | | ||
| [assignment](packages/assignment) | Adds assignment and update expression support: `a = 2`, `a++` | | ||
| [comment](packages/comment) | Adds support for ignoring comments: `a /* ignore this */ > 1 // ignore this too` | | ||
| [new](packages/new) | Adds 'new' keyword support: `new Date()` | | ||
| [numbers](packages/numbers) | Adds hex, octal, and binary number support, ignore _ char | | ||
| [object](packages/object) | Adds object expression support: `{ a: 1, b: { c }}` | | ||
| [regex](packages/regex) | Adds support for regular expression literals: `/[a-z]{2}/ig` | | ||
| [spread](packages/spread) | Adds support for the spread operator, `fn(...[1, ...a])`. Works with `object` plugin, too | | ||
| [template](packages/template) | Adds template literal support: `` `hi ${name}` `` | | ||
| | | | ||
@@ -111,0 +112,0 @@ #### How to add plugins: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
388238
0
196