2708d67630cba03ac9e1559992c8b58d069f4817
[platform/framework/web/crosswalk-tizen.git] /
1 define(['./isKind'], function (isKind) {
2     /**
3      */
4     function isDate(val) {
5         return isKind(val, 'Date');
6     }
7     return isDate;
8 });