UNPKG

@churchapps/apihelper

Version:

Library of helper functions not specific to any one ChurchApps project or framework.

5 lines 175 B
export class MySqlHelper { static toQuotedAndCommaSeparatedString(values: string[]) { return values.length === 0 ? "" : "'" + values.join("','") + "'"; } }