Current File : //usr/lib/node_modules/bower/lib/node_modules/p-throttler/lib/arrayRemove.js
'use strict';

function arrayRemove(array, value) {
    var index = array.indexOf(value);

    if (index !== -1) {
        array.splice(index, 1);
    }

    return array;
}

module.exports = arrayRemove;