UNPKG

spring-filter-query-builder

Version:

<!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 -->

11 lines (10 loc) 359 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.valuesToValue = void 0; function valuesToValue(values) { if (values.length !== 0) { return values.map(function (value) { return (typeof value === 'number' ? value : "'" + value + "'"); }).join(', '); } return ''; } exports.valuesToValue = valuesToValue;