UNPKG

@antv/util

Version:

<h1 align="center">@antv/util</h1>

6 lines (4 loc) 157 B
import isArrayLike from './is-array-like'; export default (value: any): any[] => { return isArrayLike(value) ? Array.prototype.slice.call(value) : []; };