tiny-queue
Version:
Simple FIFO queue implementation to avoid having to do shift() on an array, which is slow.
45 lines (44 loc) • 1.01 kB
JSON
{
"name": "tiny-queue",
"version": "0.2.1",
"description": "Simple FIFO queue implementation to avoid having to do shift() on an array, which is slow.",
"main": "index.js",
"scripts": {
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nolanlawson/tiny-queue.git"
},
"keywords": [
"queue",
"fifo"
],
"author": "Nolan Lawson <nolan.lawson@gmail.com>",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/nolanlawson/tiny-queue/issues"
},
"homepage": "https://github.com/nolanlawson/tiny-queue",
"devDependencies": {
"tape": "^2.13.1"
},
"testling": {
"files": [
"test.js"
],
"browsers": [
"iexplore/8..latest",
"chrome/22..latest",
"chrome/canary",
"firefox/24..latest",
"firefox/nightly",
"opera/15..latest",
"opera/next",
"safari/5.0.5..latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
}
}