word_smith icon indicating copy to clipboard operation
word_smith copied to clipboard

Elixir String Manipulation

Results 2 word_smith issues
Sort by recently updated
recently updated
newest added

Example: ```elixir > WordSmith.squish(String.duplicate(, 3)) "   " ``` This would be easily fixable by adding `u` modifier to the regex used in `replace` [here](https://github.com/benfalk/word_smith/blob/master/lib/word_smith/squish.ex#L7), however, investigating this I noticed that...

* Updates the `unaccent.rules` * Replaces Benchfella with Benchee (interesting results below) * Handle new unaccent rules that don't have a replacement, but a full on removal ## Squish It...