PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/rxjs/src/internal/util

Просмотр файла: isPromise.ts

import { isFunction } from "./isFunction";

/**
 * Tests to see if the object is "thennable".
 * @param value the object to test
 */
export function isPromise(value: any): value is PromiseLike<any> {
  return isFunction(value?.then);
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!