Skip to content

Commit e8a3012

Browse files
committedDec 21, 2024·
[extensions] Create a new list for Vehicles user-agent: Volvo, Rivian, BYD
1 parent 20e8740 commit e8a3012

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed
 

‎src/extensions/ua-parser-extensions.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ export const Emails: UAParserExt;
1212
export const Fetchers: UAParserExt;
1313
export const InApps: UAParserExt;
1414
export const Libraries: UAParserExt;
15-
export const MediaPlayers: UAParserExt;
15+
export const MediaPlayers: UAParserExt;
16+
export const Vehicles: UAParserExt;

‎src/extensions/ua-parser-extensions.js

+20-1
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,24 @@ const Libraries = Object.freeze({
321321
]
322322
});
323323

324+
/////////////
325+
// VEHICLES
326+
////////////
327+
328+
const Vehicles = Object.freeze({
329+
device : [
330+
[
331+
/dilink.+(byd) auto/i, // BYD
332+
], [VENDOR], [
333+
334+
/(rivian) (r1t)/i, // Rivian
335+
], [VENDOR, MODEL], [
336+
337+
/vcc.+netfront/i, // Volvo
338+
], [[VENDOR, 'Volvo']]
339+
]
340+
});
341+
324342
//////////
325343
// BOTS
326344
/////////
@@ -343,5 +361,6 @@ module.exports = {
343361
Fetchers,
344362
InApps,
345363
Libraries,
346-
MediaPlayers
364+
MediaPlayers,
365+
Vehicles
347366
};

0 commit comments

Comments
 (0)
Please sign in to comment.