(token, input, config)
| 845 | } |
| 846 | |
| 847 | function addTimeToArrayFromToken(token, input, config) { |
| 848 | if (input != null && hasOwnProp(tokens, token)) { |
| 849 | tokens[token](input, config._a, config, token); |
| 850 | } |
| 851 | } |
| 852 | |
| 853 | function isLeapYear(year) { |
| 854 | return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; |
no test coverage detected
searching dependent graphs…