1mZ1kk4d0 / Timestamp-Manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Timestamp Manager

Library made for timestamp conversion and formatting (under development)

  • Simple to use.

Installation

> npm i timestamp-manager

Examples

StringFormat('You are in the day DD/MM/YYYY hr:mn:ss'); 
StringFormat('you are in the day DD/MM/YYYY hr:mn:ss', {monthName: true, date: new Date(47865378525837)}) // day = DD, month = MM, year = YYYY, hour = hr, minutes = mn, seconds = ss
AddTimeToDate('1d'); //add 1 day in timestamp -> return in milliseconds
AddTimeToDate('1d', true); //add 1 day in timestamp -> return in seconds
MillisToSeconds(1660871309001); //return in seconds
SecondsToMillis(1660871597); //return in Milliseconds

License

MIT

Free Library

About

License:MIT License


Languages

Language:TypeScript 100.0%