@churchapps/apihelper
Version:
Library of helper functions not specific to any one ChurchApps project or framework.
10 lines • 336 B
JavaScript
;
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