react-native-theoplayer
Version:
A THEOplayer video component for react-native.
19 lines (18 loc) • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.arrayRemoveAt = arrayRemoveAt;
exports.arrayRemoveElement = arrayRemoveElement;
function arrayRemoveElement(array, element) {
const index = array.indexOf(element);
if (index === -1) {
return false;
}
arrayRemoveAt(array, index);
return true;
}
function arrayRemoveAt(array, index) {
array.splice(index, 1);
}
//# sourceMappingURL=arrayUtil.js.map