react-native-theoplayer
Version:
A THEOplayer video component for react-native.
14 lines (13 loc) • 311 B
JavaScript
;
export function arrayRemoveElement(array, element) {
const index = array.indexOf(element);
if (index === -1) {
return false;
}
arrayRemoveAt(array, index);
return true;
}
export function arrayRemoveAt(array, index) {
array.splice(index, 1);
}
//# sourceMappingURL=arrayUtil.js.map