Repository URL to install this package:
|
Version:
3.12.2 ▾
|
/**
* Converts list into array
*/
export default function toArray(list) {
return Array.prototype.slice.call(list || [], 0);
}