Msome
Bun

method

url.URLSearchParamsIterator.some

predicate: (value: T, index: number) => unknown
): boolean;

Determines whether the specified callback function returns true for any element of this iterator.

@param predicate

A function that accepts up to two arguments. The some method calls the predicate function for each element in this iterator until the predicate returns a value true, or until the end of the iterator.