Files
lodash/.internal/castSlice.js
John-David Dalton 6cb3460fce Remove semicolons.
2017-02-05 22:22:04 -08:00

19 lines
511 B
JavaScript

import baseSlice from './baseSlice.js'
/**
* Casts `array` to a slice if it's needed.
*
* @private
* @param {Array} array The array to inspect.
* @param {number} start The start position.
* @param {number} [end=array.length] The end position.
* @returns {Array} Returns the cast slice.
*/
function castSlice(array, start, end) {
const length = array.length
end = end === undefined ? length : end
return (!start && end >= length) ? array : baseSlice(array, start, end)
}
export default castSlice