6 lines
184 B
JavaScript
6 lines
184 B
JavaScript
|
function _arrayWithHoles(arr) {
|
||
|
if (Array.isArray(arr)) return arr;
|
||
|
}
|
||
|
|
||
|
module.exports = _arrayWithHoles;
|
||
|
module.exports["default"] = module.exports, module.exports.__esModule = true;
|