JSFiddle - React, Tailwind, and code Playground
by bryandowning
HTML
<script src="https://raw.github.com/andrewplummer/Sugar/master/release/sugar.min.js"></script>
JavaScript
// Copy char into the address bar of the browser to see a single american flag character
char = "🇺🇸"
console.log('char: ', char);
console.log('char length: ', char.length);
console.log('percent encoded char: ', encodeURIComponent(char) );
charTrunc = char.truncate(3); // appends three periods to truncated string
console.log('truncated char: ', charTrunc)
console.log('truncated char length: ', charTrunc.length)
console.log('percent encoded truncated char: ', encodeURIComponent(charTrunc) )