3.2.0 • Published 1 year ago

just-remove v3.2.0

Weekly downloads
85
License
MIT
Repository
github
Last release
1 year ago

just-remove

Part of a library of zero-dependency npm modules that do just do one thing. Guilt-free utilities for every occasion.

🍦 Try it

npm install just-remove
yarn add just-remove

Removes one array from another

import remove from 'just-remove';

remove([1, 2, 3, 4, 5, 6], [1, 3, 6]); // [2, 4, 5]