(m, format)
| 973 | } |
| 974 | |
| 975 | function localeMonthsShort(m, format) { |
| 976 | if (!m) { |
| 977 | return isArray(this._monthsShort) |
| 978 | ? this._monthsShort |
| 979 | : this._monthsShort['standalone']; |
| 980 | } |
| 981 | return isArray(this._monthsShort) |
| 982 | ? this._monthsShort[m.month()] |
| 983 | : this._monthsShort[ |
| 984 | MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone' |
| 985 | ][m.month()]; |
| 986 | } |
| 987 | |
| 988 | function handleStrictParse(monthName, format, strict) { |
| 989 | var i, |