UNPKG

@onesy/utils

Version:
6 lines (5 loc) 252 B
export declare type TPermutation = Array<any> | (() => IterableIterator<any>); export interface IPermutationOptions { response?: 'array' | 'yield'; } export default function permutation(value_: any[], options_?: IPermutationOptions): TPermutation;