1.1.1 • Published 19 days ago

@dbdteam/humanizator v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
19 days ago

@dbdteam/humanizator

Getting Started with the Dependency

Humanizator is an essential tool for any developer looking to improve the readability and comprehension of time data in their applications. It converts time units into a human-friendly format, making the interpretation of dates and durations easier for users of all kinds. Whether you're building a scheduling application, a social media platform, or a project management system, Humanizator ensures that time data is presented in a clear and understandable way, thereby enhancing user experience and the usability of your application.

Example of Client Initialization

const { HumanizerClient, DefaultConfig } = require("@dbdteam/humanizator")

const client = new HumanizerClient(DefaultConfig)

// This is 24 minutes.
const times = [
    1000 * 60 * 24,
    Date.now() + 1000 * 60 * 24,
    new Date(Date.now() + 1000 * 60 * 24)
    ]

const results = [
    client.humanizeMilliseconds(times[0]),
    client.humanizeStamps(times[1]),
    client.humanizeDates(times[2])
    ]

console.log(...results)

Also you can check the documentation!

Click here to go to our documentation

@DBDTeam - 2024

1.1.1

19 days ago

1.1.0

20 days ago

1.0.2

21 days ago

1.0.1

21 days ago

1.0.0

21 days ago