UNPKG

botframework-webchat-component

Version:
10 lines (8 loc) 187 B
export default function removeInline(array, ...items) { items.forEach(item => { let index; while (~(index = array.indexOf(item))) { array.splice(index, 1); } }); }