(value)
| 9 | * @returns {boolean} |
| 10 | */ |
| 11 | const isSANB = (value) => { |
| 12 | return typeof value === 'string' && value.trim().length > 0; |
| 13 | }; |
| 14 | |
| 15 | /** |
| 16 | * Naively checks if passed value is of later.js schedule format (https://breejs.github.io/later/schedules.html) |
no outgoing calls
no test coverage detected
searching dependent graphs…