UNPKG

@polkadot/util

Version:
21 lines (20 loc) 512 B
// Copyright 2017-2022 @polkadot/util authors & contributors // SPDX-License-Identifier: Apache-2.0 // eslint-disable-next-line @typescript-eslint/ban-types /** * @name isFunction * @summary Tests for a `function`. * @description * Checks to see if the input value is a JavaScript function. * @example * <BR> * * ```javascript * import { isFunction } from '@polkadot/util'; * * isFunction(() => false); // => true * ``` */ export function isFunction(value) { return typeof value === 'function'; }