π§³ The rapid-sdk utility library
For example, in Node.js:
npm install @rapid-sdk/util
This library is distributed in CJS and ESM module formats for maximum compatibility. (Read more about JavaScript module formats)
const util = require('@rapid-sdk/util'); // CommonJS import all
const utilHashcode = require('@rapid-sdk/util').utilHashcode; // CommonJS import named
// or
import * as util from '@rapid-sdk/util'; // ESM import all
import { utilHashcode } from '@rapid-sdk/util'; // ESM import named
aes.ts: Functions for performing AES encryption/decryptionarray.ts: Array helper functionsobject.ts: Object helper functionsosm.ts: OSM helper functionssession_mutex.ts: A per-domain session mutex backed by a cookie and dead man's switchstring.ts: String helper functionstypes.ts: TypeScript TypesSee the CONTRIBUTING.md file for more info.
π§³ Collection of rapid-sdk utility libraries