Open In App

Moment.js Twix Plugin

Twix is a Moment.js plugin that is very good at formatting ranges in a readable format. It has several range-related methods.

To install the Twix  plugin, write the below command in the terminal:



npm install twix

 

The following are some of the functions in this plugin:

The below examples will help to understand some of the methods of the Twix Plugin.



Example 1:




import moment from 'moment';
import 'twix';
  
let date = moment("2023-05-25");
console.log(moment.twix("2024-05-26").isFuture());

Output:

 

Example 2:




import moment from 'moment';
import 'twix';
  
let range = moment("1982-05-25").twix("2055-01-01");
console.log(range.humanizeLength());

Output:

 

Reference: https://momentjs.com/docs/#/plugins/twix/


Article Tags :