Table of Contents
- Introduction
- Global commands
- Change Settings (found in the settings dialogues)
- Show dialogues
- Focus navigation
| /** | |
| * Convert String to Emoji | |
| * Most emoji's start with � | |
| * If you have these in your SFCC Site Import XML File, you might get an import error. | |
| * | |
| * @usage convertStringToEmoji('��') => 🙂 | |
| * @param {String} str Raw URL Encoded String | |
| */ | |
| function convertStringToEmoji(str) { | |
| // Regex matching either a surrogate or a character. |
Table of Contents