UNPKG

@router-cli/react-router-dev

Version:

File based routing cli for react-router-dom.

15 lines (14 loc) 298 B
export const getMapKeys = (src) => { const keys = []; for (const key of src.keys()) { keys.push(key); } return keys; }; export const getMapValues = (src) => { const values = []; for (const key of src.values()) { values.push(key); } return values; };