UNPKG

cdk-encrypted-secret

Version:

CDK Construct that creates an AWS Secret Manager Secret and sets the value from an encrypted Ciphertext.

14 lines (13 loc) 189 B
/** * * @param {array} val * @param {string} by * @returns */ function join(val, by=" "){ if(isArray(val)){ val.join(by) } return val; } module.exports = join;