函数库, 面向复杂业务场景的 js 类库
链表结构转数组结构
Demo:
import { linkListToArray } from 'func-package'; const linkList = { value: 100, next: { value: 200, next: { value: 300, next: { value: 400 } } },};const arr = linkListToArray(linkList);console.log(arr); // -> [100,200,300,400]