UNPKG

@mimicry/kaleidoscope

Version:

Kaleidoscope is an NPM package that conveniently aggregates responses from multiple NFT data providers.

9 lines (8 loc) 264 B
import { Value } from '../../types'; /** * Return all _values that fall within the Mean Absolute Deviation of the mean * * @param _values A list of Values * @returns A filtered list of Values */ export declare function mad(_values: Value[]): Value[];