UNPKG

@esm2cjs/yocto-queue

Version:

Tiny queue data structure. This is a fork of sindresorhus/yocto-queue, but with CommonJS support.

8 lines (5 loc) 173 B
import {expectType} from 'tsd'; import Queue from './index.js'; const queue = new Queue<string>(); queue.enqueue('🦄'); expectType<string | undefined>(queue.dequeue());