(a: any)
| 20 | } |
| 21 | |
| 22 | export function isPromise(a: any): a is Promise<any> { |
| 23 | return a && typeof a === 'object' && typeof a.then === 'function'; |
| 24 | } |
| 25 | |
| 26 | export function findTagEnd(content: string, start = 0) { |
| 27 | let state = STATES.normal; |
no outgoing calls
no test coverage detected
searching dependent graphs…