UNPKG

@0xpolygonid/js-sdk

Version:
12 lines (11 loc) 252 B
/** * builds key path * * @param {KmsKeyType} keyType - key type * @param {string} keyID - key id * @returns string path */ export function keyPath(keyType, keyID) { const basePath = ''; return basePath + String(keyType) + ':' + keyID; }