Skip to content

michael-spengler/deno_moment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Moment.ts

The Moment.ts library for Deno that was ported from moment@2.24.0, Hope you like it.

Usage

Some cases on the moment.js official website:

Import

import { moment } from "https://deno.land/x/deno_moment@1.0.0/moment.ts";

Cases

// "2014-09-08T08:02:17-05:00" (ISO 8601)
moment().format();
// "Sunday, February 14th 2010, 3:25:50 pm"
moment().format("dddd, MMMM Do YYYY, h:mm:ss a");
// "Sun, 3PM"
moment().format("ddd, hA");
// "Invalid date"
moment("gibberish").format("YYYY MM DD");

About

Providing momentjs features in deno

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.7%
  • TypeScript 0.3%