mirror of
https://github.com/quantum5/purge-static.git
synced 2025-04-24 03:11:58 -04:00
7 lines
122 B
Python
7 lines
122 B
Python
from itertools import islice
|
|
|
|
|
|
def chunk(it, size):
|
|
it = iter(it)
|
|
return iter(lambda: list(islice(it, size)), [])
|