Created
November 1, 2019 06:07
-
-
Save AkatQuas/09c8664ec22b50fff1021bc3fd2662f5 to your computer and use it in GitHub Desktop.
Revisions
-
AkatQuas created this gist
Nov 1, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ /** The zero-width space character is encoded in Unicode as U+200B ZERO WIDTH SPACE (HTML ​) */ function insertSpaces(string){ return Array.from(string).join('\u200b'); } // see more at https://en.wikipedia.org/wiki/Zero-width_space