Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

32
node_modules/es-toolkit/dist/map/every.mjs generated vendored Normal file
View File

@@ -0,0 +1,32 @@
//#region src/map/every.ts
/**
* Tests whether all entries in a Map satisfy the provided predicate function.
*
* This function iterates through all entries of the Map and checks if the predicate function
* returns true for every entry. It returns true if the predicate is satisfied for all entries,
* and false otherwise.
*
* @template K - The type of keys in the Map.
* @template V - The type of values in the Map.
* @param {Map<K, V>} map - The Map to test.
* @param {(value: V, key: K, map: Map<K, V>) => boolean} doesMatch - A predicate function that tests each entry.
* @returns {boolean} true if all entries satisfy the predicate, false otherwise.
*
* @example
* const map = new Map([
* ['a', 10],
* ['b', 20],
* ['c', 30]
* ]);
* const result = every(map, (value) => value > 5);
* // result will be: true
*
* const result2 = every(map, (value) => value > 15);
* // result2 will be: false
*/
function every(map, doesMatch) {
for (const [key, value] of map) if (!doesMatch(value, key, map)) return false;
return true;
}
//#endregion
export { every };