Using a format with `'2-digit'` parts produces a date with no separators for the `bg-BG` locale: ```js const format = { year: 'numeric', month: '2-digit', day: '2-digit' }; formatDate(new Date(), format, 'bg-BG'); // 12 10 2018 г. ``` Compared to: ```js const format = { year: 'numeric', month: '2-digit', day: '2-digit' }; new Intl.DateTimeFormat('bg-BG', format).format(new Date()) // 12.10.2018 г. ``` See [runnable demo](https://stackblitz.com/edit/kendo-intl-2digit-separator?file=index.ts).