UNPKG

query-registry

Version:

Query the npm registry for packuments, manifests, packages and download counts

16 lines (13 loc) 262 B
export function normalizeRawLicense({ rawLicense, }: { rawLicense?: any; }): string | undefined { if (!rawLicense) { return undefined; } if (typeof rawLicense !== 'string') { return undefined; } return rawLicense; }