“Tuple” 方法 _.PopTuple<tuple> 返回元组中的最后一项 参数 tuple (Tuple): 需要处理的元组 返回 tuple (Tuple): 返回元组中的最后一项 例子 type LastItem = _.ShiftTuple<['vue', 'react', 'angular']>; // => 'angular' type LastItem = _.ShiftTuple<['vue', 'react']>; // => 'react'