3 lines
96 B

declare function arrToMap<T>(arr: string[], val?: T): { [key: string]: T };
export = arrToMap;