(open, close, replace = open, at = open.length + 1)
| 902 | */ |
| 903 | const filterEmpty = |
| 904 | (open, close, replace = open, at = open.length + 1) => |
| 905 | (string) => |
| 906 | string || !(string === "" || string === undefined) |
| 907 | ? clearBleed(`${string}`.indexOf(close, at), string, open, close, replace) |
| 908 | : ""; |
| 909 | |
| 910 | /** |
| 911 | * Returns result. |