source: node_modules/es-toolkit/dist/set/every.mjs@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 189 bytes
Line 
1function every(set, doesMatch) {
2 for (const value of set) {
3 if (!doesMatch(value, value, set)) {
4 return false;
5 }
6 }
7 return true;
8}
9
10export { every };
Note: See TracBrowser for help on using the repository browser.