diff options
Diffstat (limited to 'src/ffi.js')
-rw-r--r-- | src/ffi.js | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,3 +13,7 @@ export function length(thing) { export function reduce(thing, acc, fn) { return thing.reduce(fn, acc); } + +export function reduceRight(thing, acc, fn) { + return thing.reduceRight(fn, acc); +} |