UNPKG
imma
Version:
latest (0.0.1)
0.0.1
A collection of functions for dealing with native arrays and objects immutably
imma
/
lib
/
general
/
lastKeyOf.js
6 lines
(4 loc)
•
170 B
JavaScript
View Raw
1
2
3
4
5
6
'use strict'
const
findLastKey =
require
(
'./findLastKey'
)
const
lastKeyOf =
module
.
exports
=
(
iterable, value
) =>
findLastKey
(iterable,
other
=>
value === other)