Skip to content

Commit

Permalink
Updated types test
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonWilliamsCS committed Jul 26, 2018
1 parent f750218 commit 74bf92f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/type/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ queue.toArray();
queue.peekBack();
queue.peekFront();
queue.get(1);
queue.peekAt(1);
var entry = queue.peekAt(1);
if (entry !== undefined) {
entry.length;
}
queue.remove(1, 1);
queue.removeOne(1);
queue.toString();

queue.splice(queue.length, 0, 8, 9, 10);
queue.splice(3, 3, 44, 55, 66);
queue.splice(queue.length, 0, "8", "9", "10");
queue.splice(3, 3, "44", "55", "66");

queue.isEmpty();
queue.clear();

0 comments on commit 74bf92f

Please sign in to comment.