UNPKG

fff-js

Version:
5 lines (4 loc) 93 B
export default function *reverseL(arr) { let l = arr.length; while (l--) yield arr[l]; }