util icon indicating copy to clipboard operation
util copied to clipboard

A collection of useful utility functions

Results 1 util issues
Sort by recently updated
recently updated
newest added

Inspired by a comment on [this SO](https://stackoverflow.com/a/931095/246801) about string-reversal in Python: > For example, `"🇬🇧"[::-1]` yields "🇧🇬". I thought I'd try your Reverse() func: > assert.Equal(t, Reverse("🇬🇧"), "🇬🇧") and I...