(isStrict)
| 1127 | } |
| 1128 | |
| 1129 | function monthsShortRegex(isStrict) { |
| 1130 | if (this._monthsParseExact) { |
| 1131 | if (!hasOwnProp(this, '_monthsRegex')) { |
| 1132 | computeMonthsParse.call(this); |
| 1133 | } |
| 1134 | if (isStrict) { |
| 1135 | return this._monthsShortStrictRegex; |
| 1136 | } else { |
| 1137 | return this._monthsShortRegex; |
| 1138 | } |
| 1139 | } else { |
| 1140 | if (!hasOwnProp(this, '_monthsShortRegex')) { |
| 1141 | this._monthsShortRegex = defaultMonthsShortRegex; |
| 1142 | } |
| 1143 | return this._monthsShortStrictRegex && isStrict |
| 1144 | ? this._monthsShortStrictRegex |
| 1145 | : this._monthsShortRegex; |
| 1146 | } |
| 1147 | } |
| 1148 | |
| 1149 | function monthsRegex(isStrict) { |
| 1150 | if (this._monthsParseExact) { |
nothing calls this directly
no test coverage detected