UNPKG

@progress/kendo-charts

Version:

Kendo UI platform-independent Charts library

14 lines (10 loc) 291 B
import { isNumber } from '../common'; export default function firstDay(options, intlService) { if (isNumber(options.weekStartDay)) { return options.weekStartDay; } if (intlService && intlService.firstDay) { return intlService.firstDay(); } return 0; }