| Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/date-picker/src/helpers/ |
| Current File : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/date-picker/src/helpers/is-date-like.js |
import { Type } from 'main.core';
import type { DateLike } from '../date-picker-options';
export function isDateLike(date: DateLike): boolean
{
return Type.isStringFilled(date) || Type.isNumber(date) || Type.isDate(date);
}