Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
erayd committed Sep 29, 2016
1 parent cfacdd5 commit 992f1ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ growth of the queue. All operations are O(1) (constant time).

Spique does not require an initial or maximum size (although you can define a
maximum if you wish), and will both grow and shrink dynamically as items are
added and removed.
added and removed. Unlike many other deque implementations, dynamic resizing
is an extremely cheap O(1) operation, and will not have any notable impact on
performance.

Spique is available [via npm](https://www.npmjs.com/package/spique):
```bash
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spique",
"version": "1.0.9",
"version": "1.0.10",
"description": "A spiral deque - high performance and dynamic queue size",
"main": "spique.js",
"scripts": {
Expand Down

0 comments on commit 992f1ac

Please sign in to comment.