* Removes Unicode whitespace characters. * @param {string} string * @return {string} String without whitespaces
(string)
| 60 | * @return {string} String without whitespaces |
| 61 | */ |
| 62 | static removeWhitespaces (string) { |
| 63 | return this.replaceWhitespaces(string, '', true) |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Replaces Unicode whitespace characters with U+20 space character. |
no test coverage detected