Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@webqit/subscript

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@webqit/subscript - npm Package Compare versions

Comparing version 2.1.10 to 2.1.13

2

package.json

@@ -11,3 +11,3 @@ {

"homepage": "https://webqit.io/tooling/subscript",
"version": "2.1.10",
"version": "2.1.13",
"license": "MIT",

@@ -14,0 +14,0 @@ "repository": {

@@ -22,3 +22,2 @@ # Subscript Function Proposal

+ [License](#license)
+ [Prior Art](#prior-art)
+ [Credits](#credits)

@@ -163,3 +162,3 @@

```js
// As a property
// As property
let myObject = {

@@ -173,3 +172,3 @@ fn: function**( a, b ) {

```js
// As a method
// As method
let myObject = {

@@ -183,3 +182,3 @@ **fn( a, b ) {

```js
// As a class method
// As class method
class MyClass {

@@ -222,3 +221,3 @@ **fn( a, b ) {

if ( a > 10 ) {
return a + await b;
return Promise.resolve( a + b );
}

@@ -262,3 +261,3 @@ return a + b;

And the update continues to include any subsequent dependents of the `message` variable itself... and any dependents of those dependents... until the end of the dependency thread.
And the update continues to include any subsequent dependents of the `message` variable itself... and on to dependents of those dependents... until the end of the dependency thread.

@@ -480,3 +479,3 @@ ```js

So, in the loop above, an update event for any references in `initStatement`; `testStatement`; `incrementStatement` restarts the loop to keep the contract.
So, in the loop above, an update event for any references in `initStatement`; `testStatement`; `incrementStatement` reruns the loop to keep the contract.

@@ -497,3 +496,3 @@ As with a "for" loop, a "while" and "do ... while" loop are bound to references in their "test" expression.

So, in each case above, an update event for any references in `testExpr` restarts the loop to keep the contract.
So, in each case above, an update event for any references in `testExpr` reruns the loop to keep the contract.

@@ -516,3 +515,3 @@ #### A "for ... of" And “for … in” Loop

So, in each case above, an update event for any references in `iteratee` restarts the loop to keep the contract.
So, in each case above, an update event for any references in `iteratee` reruns the loop to keep the contract.

@@ -602,5 +601,5 @@ #### Fine-Grained Updates Within A Loop

##### Handling Labeled `Break` And `Continue` Directives
##### Handling Labeled `Break` And `Continue` Statements
Fine-grained updates observe `break` and `continue` statements, even when these direct control to a parent block using *labels*.
Fine-grained updates observe `break` and `continue` statements, even when these redirect control to a parent block using *labels*.

@@ -829,4 +828,2 @@ ```js

## Prior Art
## Credits
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc