@wordpress/priority-queue
Advanced tools
Comparing version 2.2.0 to 2.2.1
{ | ||
"name": "@wordpress/priority-queue", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "Generic browser priority queue.", | ||
@@ -36,3 +36,3 @@ "author": "The WordPress Contributors", | ||
}, | ||
"gitHead": "743b70f86f1e75fd66a583bf659f2b2fe5daf1cc" | ||
"gitHead": "4e106dd6283fd742aeb521ebc0ae29f35d4274b4" | ||
} |
@@ -37,3 +37,3 @@ # Priority Queue | ||
queue.add( ctx1, () => console.log( 'This will be printed first' ) ); | ||
queue.add( ctx2, () => console.log( 'This won\'t be printed' ) ); | ||
queue.add( ctx2, () => console.log( "This won't be printed" ) ); | ||
queue.add( ctx2, () => console.log( 'This will be printed second' ) ); | ||
@@ -46,5 +46,4 @@ ``` | ||
<!-- END TOKEN(Autogenerated API docs) --> | ||
<br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p> |
94886
48