nonblocking-array
Version:
Provides nonblocking functions of various Array methods. Unlike the standard array methods that execute array iterations in its entirety in one cycle of the event loop and may block the event loop on large arrays, these functions execute each iteration of
31 lines (30 loc) • 1.11 kB
JSON
{
"name": "nonblocking-array",
"version": "1.0.9",
"description": "Provides nonblocking functions of various Array methods. Unlike the standard array methods that execute array iterations in its entirety in one cycle of the event loop and may block the event loop on large arrays, these functions execute each iteration of the array in isolation (separate async functions) enabling the event loop to yield and handle other tasks while the large array operations/processing is in progress.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elikemteddy/nonblocking-array.git"
},
"author": "Theodore Elikem Attigah",
"license": "MIT",
"bugs": {
"url": "https://github.com/elikemteddy/nonblocking-array/issues"
},
"homepage": "https://github.com/elikemteddy/nonblocking-array#readme",
"keywords": [
"nonblocking",
"array",
"nonblocking array",
"nonblocking array map",
"nonblocking array forEach",
"nonblocking array filter"
],
"devDependencies": {
"jest": "^29.5.0"
}
}