MCPcopy Create free account
hub / github.com/handsontable/handsontable / enqueue

Method enqueue

handsontable/src/utils/dataStructures/queue.ts:27–29  ·  view source on GitHub ↗

* Add new item or items at the back of the queue. * * @param {*} items An item to add.

(...items: unknown[])

Source from the content-addressed store, hash-verified

25 * @param {*} items An item to add.
26 */
27 enqueue(...items: unknown[]) {
28 this.items.push(...items);
29 }
30
31 /**
32 * Remove the first element from the queue and returns it.

Callers

nothing calls this directly

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected