/** * A list helper class */ export default class List extends Array { constructor() { super(); this.links = null; } }