Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/lassiecoder/mutual-funding-app/server/node_modules/denque/

LICENSE /cody/lassiecoder/mutual-funding-app/server/node_modules/denque/LICENSE
24 Views
0 Comments
Copyright (c) 2018 Mike Diarmid (Salakar) <mike.diarmid@gmail.com>

Licensed under the Apache License, Version 2.0 (the "License
README.md /cody/lassiecoder/mutual-funding-app/server/node_modules/denque/README.md
17 Views
0 Comments
<p align="center">
<a href="https://invertase.io">
<img src="https://static.invertase.io/assets/invertase-logo-small.png">
index.d.ts /cody/lassiecoder/mutual-funding-app/server/node_modules/denque/index.d.ts
18 Views
0 Comments
declare class Denque<T = any> {
constructor();
constructor(array: T[]);

push(item: T): number;
unshift(item: T): number
index.js /cody/lassiecoder/mutual-funding-app/server/node_modules/denque/index.js
5 Views
0 Comments
'use strict';

/**
* Custom implementation of a double ended queue.
*/
function Denque(array) {
this._head = 0;
this._tail
package.json /cody/lassiecoder/mutual-funding-app/server/node_modules/denque/package.json
17 Views
0 Comments
{
"name": "denque",
"version": "1.4.1",
"description": "The fastest javascript implementation of a double-ended queue. Mai