Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
web-page.js 251 B
Newer Older
peter_rabbit's avatar
peter_rabbit committed
"use strict";

class WebPage {
    constructor(args) {
        Object.assign(this, args);
    }
peter_rabbit's avatar
peter_rabbit committed

    // setMeta() {
    //     if (!this.meta) {
    //         console.warn("Meta information missing")
    //     }
    // }
peter_rabbit's avatar
peter_rabbit committed
}

module.exports = WebPage;