UNPKG

@mimicry/kaleidoscope

Version:

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

12 lines (10 loc) 234 B
import { Value } from '../../types'; /** * Return all _values with no filtering * * @param _values A list of Values * @returns The original list of Values */ export function none(_values: Value[]): Value[] { return _values; }