polkadot-js/common

View on GitHub
packages/util/src/bi/min.ts

Summary

Maintainability
A
0 mins
Test Coverage
// Copyright 2017-2024 @polkadot/util authors & contributors
// SPDX-License-Identifier: Apache-2.0

import { createCmp } from './helpers.js';

/**
 * @name nMax
 * @summary Finds and returns the highest value in an array of bigint.
 */
export const nMax = /*#__PURE__*/ createCmp<bigint>((a, b) => a > b);

/**
 * @name nMin
 * @summary Finds and returns the lowest value in an array of bigint.
 */
export const nMin = /*#__PURE__*/ createCmp<bigint>((a, b) => a < b);