discourse/lib/base62.rb
Josh Soref 59097b207f
DEV: Correct typos and spelling mistakes (#12812)
Over the years we accrued many spelling mistakes in the code base. 

This PR attempts to fix spelling mistakes and typos in all areas of the code that are extremely safe to change 

- comments
- test descriptions
- other low risk areas
2021-05-21 11:43:47 +10:00

38 lines
854 B
Ruby

# frozen_string_literal: true
# Modified version of: https://github.com/steventen/base62-rb
module Base62
KEYS ||= "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
KEYS_HASH ||= KEYS.each_char.with_index.to_h
BASE ||= KEYS.length
# Encodes base10 (decimal) number to base62 string.
def self.encode(num)
return "0" if num == 0
return nil if num < 0
str = ""
while num > 0
# prepend base62 characters
str = KEYS[num % BASE] + str
num = num / BASE
end
str
end
# Decodes base62 string to a base10 (decimal) number.
def self.decode(str)
num = 0
i = 0
len = str.length - 1
# while loop is faster than each_char or other 'idiomatic' way
while i < str.length
pow = BASE**(len - i)
num += KEYS_HASH[str[i]] * pow
i += 1
end
num
end
end