UNPKG

phrase-engine

Version:

Language files on steroids for conversational UIs that aren't boring.

12 lines (10 loc) 258 B
export default function mapFilter<FUNC>( map: {[key: string]: FUNC}, keys: string[] ): {[key: string]: FUNC} { const n_map: { [key: string]: FUNC } = {}; keys.forEach(key => n_map[key] = map[key]); return n_map; }