This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* helper class to manage incrementing salesforce ids | |
* Author: CloudAnswers | |
* License: AGPL3 | |
*/ | |
const caseSafeId = require("./caseSafeId"); | |
const base62 = require("base-x")( | |
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
); |