public sayGoodbye()

in lib/index.ts [32:41]


    public sayGoodbye(times: number = 1) {
        let ret = '';
        for (let i = 0; i < times; ++i) {
            ret += `${this.goodbyeMessage}`;
            if (i < times - 1) {
                ret += '\n';
            }
        }
        return ret;
    }