mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 05:08:54 +00:00
57 lines
1.6 KiB
JavaScript
57 lines
1.6 KiB
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2019 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
var SafeRange = require('./SafeRange');
|
|
|
|
/**
|
|
* Removes the item within the given range in the array.
|
|
*
|
|
* The array is modified in-place.
|
|
*
|
|
* You can optionally specify a callback to be invoked for the item/s successfully removed from the array.
|
|
*
|
|
* @function Phaser.Utils.Array.RemoveBetween
|
|
* @since 3.4.0
|
|
*
|
|
* @param {array} array - The array to be modified.
|
|
* @param {integer} startIndex - The start index to remove from.
|
|
* @param {integer} endIndex - The end index to remove to.
|
|
* @param {function} [callback] - A callback to be invoked for the item removed from the array.
|
|
* @param {object} [context] - The context in which the callback is invoked.
|
|
*
|
|
* @return {Array.<*>} An array of items that were removed.
|
|
*/
|
|
var RemoveBetween = function (array, startIndex, endIndex, callback, context)
|
|
{
|
|
if (startIndex === undefined) { startIndex = 0; }
|
|
if (endIndex === undefined) { endIndex = array.length; }
|
|
if (context === undefined) { context = array; }
|
|
|
|
if (SafeRange(array, startIndex, endIndex))
|
|
{
|
|
var size = endIndex - startIndex;
|
|
|
|
var removed = array.splice(startIndex, size);
|
|
|
|
if (callback)
|
|
{
|
|
for (var i = 0; i < removed.length; i++)
|
|
{
|
|
var entry = removed[i];
|
|
|
|
callback.call(context, entry);
|
|
}
|
|
}
|
|
|
|
return removed;
|
|
}
|
|
else
|
|
{
|
|
return [];
|
|
}
|
|
};
|
|
|
|
module.exports = RemoveBetween;
|