UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

15 lines (11 loc) 344 B
import splitToWords from "./splitToWords"; var insertGap = function insertGap(values, gap) { var array = splitToWords(values); if (array) { return array.map(function (col, i, arr) { return gap && i + 1 < arr.length ? "".concat(col, " ").concat(gap) : col; }).join(" "); } return undefined; }; export default insertGap;