UNPKG

lenye_base

Version:

基础方法

9 lines (7 loc) 181 B
/** * Returns true if the element has the specified Array, false otherwise. */ function contains(target, item) { return target.indexOf(item) > -1; } export default contains;