5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
|
|
export const checkUserAgent = ua => {
|
||
|
|
const userAgent = ua.replace(/\u03b1/, 'alpha').replace(/\u03b2/, 'beta');
|
||
|
|
return userAgent;
|
||
|
|
};
|