51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
define([
|
|
'./Check',
|
|
'./defined',
|
|
'./FeatureDetection'
|
|
], function(
|
|
Check,
|
|
defined,
|
|
FeatureDetection) {
|
|
'use strict';
|
|
|
|
/**
|
|
* Create a shallow copy of an array from begin to end.
|
|
*
|
|
* @param {Array} array The array to fill.
|
|
* @param {Number} [begin=0] The index to start at.
|
|
* @param {Number} [end=array.length] The index to end at which is not included.
|
|
*
|
|
* @returns {Array} The resulting array.
|
|
* @private
|
|
*/
|
|
function arraySlice(array, begin, end) {
|
|
//>>includeStart('debug', pragmas.debug);
|
|
Check.defined('array', array);
|
|
if (defined(begin)) {
|
|
Check.typeOf.number('begin', begin);
|
|
}
|
|
if (defined(end)) {
|
|
Check.typeOf.number('end', end);
|
|
}
|
|
//>>includeEnd('debug');
|
|
|
|
if (typeof array.slice === 'function') {
|
|
return array.slice(begin, end);
|
|
}
|
|
|
|
var copy = Array.prototype.slice.call(array, begin, end);
|
|
var typedArrayTypes = FeatureDetection.typedArrayTypes;
|
|
var length = typedArrayTypes.length;
|
|
for (var i = 0; i < length; ++i) {
|
|
if (array instanceof typedArrayTypes[i]) {
|
|
copy = new typedArrayTypes[i](copy);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return copy;
|
|
}
|
|
|
|
return arraySlice;
|
|
});
|