/** * * @author Ray * * @date 2023-08-11 * * @workspace ray-template * * @remark 今天也是元气满满撸代码的一天 */ export function array(length: number) { return new Array(length).fill(0) }