UNPKG

262 BPlain TextView Raw
1export function normalizeRawLicense({
2 rawLicense,
3}: {
4 rawLicense?: any;
5}): string | undefined {
6 if (!rawLicense) {
7 return undefined;
8 }
9
10 if (typeof rawLicense !== 'string') {
11 return undefined;
12 }
13
14 return rawLicense;
15}