Skip to content

Instantly share code, notes, and snippets.

@deepakshrma
Created July 4, 2020 10:59
Show Gist options
  • Save deepakshrma/544c8f9dcb3e4a748f96b6510e5f6a77 to your computer and use it in GitHub Desktop.
Save deepakshrma/544c8f9dcb3e4a748f96b6510e5f6a77 to your computer and use it in GitHub Desktop.
deno moment sample
import moment from "https://cdn.pika.dev/moment@^2.26.0";
export function greet(name: string) {
return `Hello, Mr./Ms. ${name}`;
}
export function formattedDate() {
const todayMoment = moment(new Date());
const todayFormatted = todayMoment.format("MM/DD/YYYY hh:mm a");
return todayFormatted;
}
formattedDate()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment