UNPKG

spring-filter-query-builder

Version:

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

7 lines (6 loc) 218 B
export function valuesToValue(values) { if (values.length !== 0) { return values.map(function (value) { return (typeof value === 'number' ? value : "'" + value + "'"); }).join(', '); } return ''; }