molang icon indicating copy to clipboard operation
molang copied to clipboard

Fast MoLang parser for JavaScript/TypeScript applications

Results 5 molang issues
Sort by recently updated
recently updated
newest added

Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...

dependencies

https://github.com/bridge-core/molang/blob/master/lib/Molang.ts#L457

bug
good first issue

Adds postfix operatorts ++ and --, which are compiled to `(v.x=v.x+1;0)+v.x-1` and `(v.x=v.x-1;0)+v.x+1` respectively. Test 'v.x = 1 + v.y++ + 2;': 'v.x=1+(v.y=v.y+1;0)+v.y-1+2;' still fails, because the parse order is...

Bumps [jsdom](https://github.com/jsdom/jsdom) from 11.12.0 to 20.0.0. Release notes Sourced from jsdom's releases. Version 20.0.0 Node.js v14 is now the minimum supported version. Added crypto.getRandomValues(). (sjrd) Added HTMLFormControlsCollection and RadioNodeList, so...

dependencies

When an expression modifies a leaked variable, you should be able to access it again through an API method such as `molang.getEnv(...)`.