Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
array-iterate
Advanced tools
`Array#forEach()` but it’s possible to define where to move to next
Array#forEach()
but it’s possible to define where to move to next.
A tiny package that works just like forEach
, with one small difference.
You can use this if for some weird reason—like I did—you have to sometimes skip a few places ahead or backwards when moving through an array.
This package is ESM only. In Node.js (version 12.20+, 14.14+, or 16.0+), install with npm:
npm install array-iterate
In Deno with Skypack:
import {arrayIterate} from 'https://cdn.skypack.dev/array-iterate@2?dts'
In browsers with Skypack:
<script type="module">
import {arrayIterate} from 'https://cdn.skypack.dev/array-iterate@2?min'
</script>
import {arrayIterate} from 'array-iterate'
let first = true
arrayIterate(
[1, 2, 3, 4],
(value, index, values) => {
console.log(this, value, index, values)
// Repeat once.
if (first && index + 1 === values.length) {
first = false
return 0
}
},
{hello: 'world'}
)
Yields:
{hello: 'world'}, 1, 0, [1, 2, 3, 4]
{hello: 'world'}, 2, 1, [1, 2, 3, 4]
{hello: 'world'}, 3, 2, [1, 2, 3, 4]
{hello: 'world'}, 4, 3, [1, 2, 3, 4]
{hello: 'world'}, 1, 0, [1, 2, 3, 4]
{hello: 'world'}, 2, 1, [1, 2, 3, 4]
{hello: 'world'}, 3, 2, [1, 2, 3, 4]
{hello: 'world'}, 4, 3, [1, 2, 3, 4]
This package exports the following identifiers: arrayIterate
.
There is no default export.
arrayIterate(values, callbackFn[, thisArg])
Perform the specified action for each element in an array (just like
Array#forEach()
).
When callbackFn
returns a number
, moves to the element at that index
next.
values
(Array<*>
)
— values to iterate overcallbackFn
(Function
)
— function called for each element, can return the index
to move to nextthisArg
(*
, optional)
— optional object assigned as this
in callbackFn
undefined
.
function callbackFn(value, index, values)
Callback given to iterate
.
this
(*
)
— context object when given as thisArg
to arrayIterate
or undefined
value
(*
)
— element in arrayindex
(number
)
— index of value
in values
values
(Array.<*>
)
— listnumber
or undefined
— the index
to move to next.
This package is fully typed with TypeScript.
There is also a CallbackFn
type export that represents the callback function.
This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, and 16.0+. It also works in Deno and modern browsers.
This package is safe, assuming that you don’t create an infinite loop by keeping on repeating.
Yes please! See How to Contribute to Open Source.
FAQs
`Array#forEach()` but it’s possible to define where to move to next
The npm package array-iterate receives a total of 0 weekly downloads. As such, array-iterate popularity was classified as not popular.
We found that array-iterate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.