Skip to main content
Module

x/date_fns/index.js>parse

date-fns Deno package
Very Popular
Go to Latest
function parse
import { parse } from "https://deno.land/x/date_fns@v2.7.0/index.js";

Examples

// Parse 11 February 2014 from middle-endian format: var result = parse('02/11/2014', 'MM/dd/yyyy', new Date()) //=> Tue Feb 11 2014 00:00:00

// Parse 28th of February in Esperanto locale in the context of 2010 year: import eo from 'date-fns/locale/eo' var result = parse('28-a de februaro', "do 'de' MMMM", new Date(2010, 0, 1), { locale: eo }) //=> Sun Feb 28 2010 00:00:00

Parameters

dirtyDateString
  • the string to parse
dirtyFormatString
  • the string of tokens
dirtyBackupDate
  • defines values missing from the parsed dateString
dirtyOptions