3.0.1 • Published 12 months ago

voronstools v3.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

Voroniyx Tools

Web: https://tools.voroniyx.xyz

This Module is cjs and mjs compatible

The Standart Export ist mjs for modules

import {createTimestamp,TimestampTypes} from 'voronstools';

For CommonJS / cjs use this import:

const {createTimestamp,TimestampTypes} = require('voronstools/src/main.cjs');

An example code can look like this:

import {createTimestamp,TimestampTypes, generateRandomString} from 'voronstools'; // imports the classes and TimestampTypes Objekt

//creates a new class whit a given Date and Type
let createdDiscordTimestamp = new createTimestamp({
    Date:Date.now(),
    Type:TimestampTypes.Date
})

// logs the class
console.log(createdDiscordTimestamp) // createTimestamp { date: 1670964081583, type: '<t:unix:d>' }
// logs the generated Timestamp from your given Date
console.log(createdDiscordTimestamp.getDate()) //<t:1670964081:d>

//creates a new class to generate a new random string
let createdString = new generateRandomString({lenght:5}) //the minmum lenght is 4 and the maximum is 46

//logs the class
console.log(g) //generateRandomString { lenght: 5 }
//logs the string
console.log(g.getString()) //a string. example: kqVkl

For Bug Reports or any Issues join the Discord Server: https://voroniyx.xyz -> "Discord" ~ Voroniyx

3.0.1

12 months ago

3.0.0

12 months ago

2.1.0

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago