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

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

Added visualizations

  • Property mode set to 100644
File size: 189 bytes
RevLine 
[a762898]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.