UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 189 B
/** * Returns all items in the input array except those specified in the second parameter. */ declare const without: (arr: any[], ...values: any[]) => any[]; export default without;