1
0
mirror of https://github.com/lancedikson/bowser synced 2026-09-23 04:24:54 +00:00

feat: add Ladybird browser support (#627)

This commit is contained in:
Jelle Raaijmakers
2026-07-31 11:10:10 +02:00
committed by GitHub
parent 92b5639733
commit a37b8be8a7
6 changed files with 57 additions and 1 deletions

View File

@@ -1122,6 +1122,22 @@ const browsersList = [
return browser;
},
},
/* Ladybird */
{
test: [/ladybird/i],
describe(ua) {
const browser = {
name: 'Ladybird',
};
const version = Utils.getFirstMatch(/ladybird\/(\d+(\.?_?\d+)+)/i, ua);
if (version) {
browser.version = version;
}
return browser;
},
},
{
test: [/chrome|crios|crmo/i],
describe(ua) {