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

package.dist.util.whenDOMReady.js Maven / Gradle / Ivy

const whenDOMReady = () => {
    return new Promise(resolve => {
        if (document.body) {
            resolve();
        }
        else {
            document.addEventListener("DOMContentLoaded", () => {
                resolve();
            });
        }
    });
};
export default whenDOMReady;
//# sourceMappingURL=whenDOMReady.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy