UNPKG

@botonic/plugin-contentful

Version:

## What Does This Plugin Do?

7 lines (6 loc) 172 B
export function isOfType<T extends string>( val: string, enumType: { [s: string]: T } ): val is T { return Object.values(enumType).find(m => m == val) != undefined }