mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-25 07:16:21 +08:00
15 lines
227 B
JavaScript
15 lines
227 B
JavaScript
|
|
(win => {
|
|
|
|
win.Sieve = {
|
|
/*
|
|
RegEx: {},
|
|
Grammar: {},
|
|
Commands: {},
|
|
parseScript: ()=>{},
|
|
*/
|
|
arrayToString: (arr, separator) =>
|
|
arr.map(item => item.toString ? item.toString() : item).join(separator)
|
|
};
|
|
|
|
})(this);
|