Initial commit (secrets removed)

This commit is contained in:
Ali Arghyani
2025-11-04 09:09:29 +03:30
commit e1bc3d8adf
182 changed files with 17578 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// like `any` in Python
export const any = (iterable: any[]): boolean => {
return iterable.some(Boolean)
}
// like `all` in Python
export const all = (iterable: any[]): boolean => {
return iterable.every(Boolean)
}