parser
parser copied to clipboard
The Observable parser.
Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
Destructuring allows a cell to expose multiple values. ```js ({foo, bar}) = ({foo: 1, bar: 2}) ``` ```js ({foo, bar}) = { return {foo: 1, bar: 2}; } ``` ```js...
It’d be nice if there were a way to opt-in to getting a promise of a cell’s next value. This would allow two things: 1. A cell could start running...
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @OlafConijn in...
Bumps [semver](https://github.com/npm/node-semver) from 7.3.5 to 7.5.4. Release notes Sourced from semver's releases. v7.5.4 7.5.4 (2023-07-07) Bug Fixes cc6fde2 #588 trim each range set before parsing (@lukekarrys) 99d8287 #583 correctly parse...
currently, there are valid javascript expressions that use observables keywords `mutable` and `viewof` as identifiers that the observable parser will reject. the goal would be to allow these expressions where...
Adds `Event` to the list of known globals. Currently a cell that references the `Event` constructor will have `Event` declared as input: ```js function _1(md){return( md`# Untitled` )} function _2(Event){return(...