Module: Shorten

Defined in:
lib/shorten.rb

Defined Under Namespace

Modules: Numeric, String

Constant Summary collapse

BASE36 =
((0..9).to_a + ('a'..'z').to_a).map(&:to_s).join
BASE62 =
BASE36 + ('A'..'Z').map(&:to_s).join