function curtail(arr) {
    let rs = JSON.parse(JSON.stringify(arr))
    rs.splice(0,1)
    return rs
}