mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
Move internal modules to “internal” folder.
This commit is contained in:
18
.internal/castSlice.js
Normal file
18
.internal/castSlice.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import baseSlice from './.internal/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;
|
||||
Reference in New Issue
Block a user