unhashID()

Gets an ID (non-negative integer) by decoding the given hashed ID.

This function is valid in v2.9.0 to v2.24.3. This function has been downloaded 60 times.

Parameters

{string} hashedID
The hashed ID that must be parsed to get the original ID.
{number=} opt_intHash Optional
Non-negative integer that will be used to find the offset of the characters used to represent hashedID.
{string=} opt_strAlpha Optional, Default:"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
All of the characters that were used to encode hashedID. Defaults to the digits 0 to 9 followed by A to Z followed by a to z.

Returns

{number}
The ID (non-negative integer) that was used to produce hashedID based on the hash and the alphabet.