UNPKG

repture

Version:

Lightweight JavaScript ES6 based utility library

4 lines (3 loc) 108 B
export default function without(array: Array<any>, value: any) { return array.filter(_ => _ !== value); }