// Useage: emptyArray(["one","two","three","four"]) // [] export function emptyArray(arr: { length: any[]; }) { return arr.length = []; }