All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.DateStub.js Maven / Gradle / Ivy

There is a newer version: 3.9.2
Show newest version
class DateStub extends Date {
    static fixedDate = null;

    constructor(...args) {
        if (args.length === 0 && DateStub.fixedDate) {
            return DateStub.fixedDate;
        } else {
            super(...args);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy