function thenable()

in runtimes/runtimes/lsp/router/util.ts [5:7]


function thenable<T>(value: any): value is Thenable<T> {
    return value && func(value.then)
}