Version: 0.2.00.3.01.0.01.1.01.2.02.0.0-02.0.0-12.0.0-22.0.0-32.0.0-42.0.0-52.0.02.1.0-02.2.0-02.2.02.3.0-02.3.02.4.02.5.0-02.5.02.6.03.0.0-03.0.0-13.0.03.0.14.0.0
export function normalizeRawLicense({
rawLicense,
}: {
rawLicense?: any;
}): string | undefined {
if (!rawLicense) {
return undefined;
}
if (typeof rawLicense !== 'string') {
return rawLicense;