else if (this._periodicity === 'quarter') {
        var month = (this._value.substring(6, 7) - 1) * 3 + 1;
        if (month < 10) month = '0' + month;

        this._firstDate = new Date(this._value.substring(0, 5) + month + '-01T00:00:00Z');