+ Initialized the Project

+ Setup the Month Parser
This commit is contained in:
2022-05-06 00:45:27 +03:00
commit f43baa895e
7 changed files with 239 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/**
* A dictionary for all of the months of the year
*/
const monthDictionary: Array<string> = [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
];
export {
monthDictionary
};

1
src/Types/formatTypes.ts Normal file
View File

@@ -0,0 +1 @@
export type monthType = "single" | "double" | "short" | "full"

75
src/index.ts Normal file
View File

@@ -0,0 +1,75 @@
import { monthDictionary } from "./Dictionaries/monthDictionary";
import { monthType } from "./Types/formatTypes";
/**
* The main Tyme Class, initialize it by optionally passing a date object
*/
export default class TymeJS {
/**
* The current TymeStamp that we are assigned
*/
private ts: Date;
constructor(dat: Date | null = null) {
// Check if a date was passed to the initialization
if ( dat != null ) {
// Assign the adte to self
this.ts = dat;
} else {
// There was no date provided, get the current timestamp
this.ts = new Date();
}
}
/**
* Get the currently assigned date object
* @returns The assigned Date object
*/
public getDate(): Date {
return this.ts;
}
/**
* Format the current timestamp to a workable format
* @param dateTimeFormat
* @returns The date formatted in the provided dateTimeFormat
*/
public format(dateTimeFormat: string): string {
/**
* The formatted date
*/
let formattedDate = ``;
// Return the formatted date
return formattedDate;
}
/**
* Get the current month
*/
public getMonth(mType: monthType): string {
let monthIndex: number = this.ts.getMonth();
if ( mType === "single" ) {
return String(monthIndex + 1);
} else if ( mType === "double" ) {
return String(monthIndex + 1).padStart(2, "0");
} else if ( mType === "short" ) {
return monthDictionary[monthIndex].slice(0, 3);
} else {
return monthDictionary[monthIndex];
}
}
}
// Export this for the package
(globalThis as any).TymeJS = TymeJS;