UNPKG
@auth0/cose
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
COSE library for node.js
github.com/auth0-lab/cose
auth0-lab/cose
@auth0/cose
/
dist
/
types
/
util
/
maps.d.ts
8 lines
(7 loc)
•
232 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Creates a new map with the keys and values of the given map swapped. * *
@param
map {Map<K, V>} the original map *
@returns
{
Map<V, K>
} the new map */
export
declare
const
reverseMap
: <K, V>
(
map
:
Map
<K, V>
) =>
Map
<V, K>;