Added Sieve parser code in master

This commit is contained in:
the-djmaze 2022-03-09 12:33:31 +01:00
parent e90e8a55ce
commit f4cd25f8ad
21 changed files with 2126 additions and 8 deletions

4
dev/Sieve/Utils.js Normal file
View file

@ -0,0 +1,4 @@
export const
arrayToString = (arr, separator) =>
arr.map(item => item.toString ? item.toString() : item).join(separator);