UNPKG

@churchapps/apihelper

Version:

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

10 lines 336 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MySqlHelper = void 0; class MySqlHelper { static toQuotedAndCommaSeparatedString(values) { return values.length === 0 ? "" : "'" + values.join("','") + "'"; } } exports.MySqlHelper = MySqlHelper; //# sourceMappingURL=MySqlHelper.js.map