@reactual/handsontable
Version:
Spreadsheet-like data grid editor
62 lines (55 loc) • 947 B
JavaScript
/**
* @class Queue
* @util
*/
class Queue {
constructor(initial = []) {
/**
* Items collection.
*
* @type {Array}
*/
this.items = initial;
}
/**
* Add new item or items at the back of the queue.
*
* @param {*} items An item to add.
*/
enqueue(...items) {
this.items.push(...items);
}
/**
* Remove the first element from the queue and returns it.
*
* @returns {*}
*/
dequeue() {
return this.items.shift();
}
/**
* Return the first element from the queue (without modification queue stack).
*
* @returns {*}
*/
peek() {
return this.isEmpty() ? void 0 : this.items[0];
}
/**
* Check if the queue is empty.
*
* @returns {Boolean}
*/
isEmpty() {
return !this.size();
}
/**
* Return number of elements in the queue.
*
* @returns {Number}
*/
size() {
return this.items.length;
}
}
export default Queue;