Skip to content

Instantly share code, notes, and snippets.

@jaynetics
Created March 11, 2019 18:06
Show Gist options
  • Save jaynetics/b024ffa19ce28c731289bd880b492b0b to your computer and use it in GitHub Desktop.
Save jaynetics/b024ffa19ce28c731289bd880b492b0b to your computer and use it in GitHub Desktop.
require 'stringex'
require 'sexy_slug'
require 'benchmark'
string = (0..0xD799).map { |cp| cp.chr('utf-8') }.join
Benchmark.bmbm do |x|
x.report { string.to_url }
x.report { SexySlug.from(string) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment