Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/date-picker/src/helpers/
Upload File :
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);
}