UNPKG

mout

Version:

Modular Utilities

12 lines (10 loc) 206 B
import some from './some'; /** * Check if object contains value */ function contains(obj, needle) { return some(obj, function(val) { return val === needle; }); } export default contains;