Skip to content

lisniuse/deno_moment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 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/moment/moment.ts";
// or
import { moment } from "https://raw.githubusercontent.com/lisniuse/deno_moment/master/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

This moment.ts was ported from moment.js@2.24.0.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published