* Detect Emojis(Extended Pictograph) in string * https://stackoverflow.com/a/64007175/1397641
(string)
| 20 | * https://stackoverflow.com/a/64007175/1397641 |
| 21 | */ |
| 22 | function hasEmoji(string) { |
| 23 | return /\p{Extended_Pictographic}/u.test(string) |
| 24 | } |
| 25 | |
| 26 | describe('README Validation', () => { |
| 27 | let readmeFileContent |