File tree 2 files changed +22
-2
lines changed
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ export const Emails: UAParserExt;
12
12
export const Fetchers : UAParserExt ;
13
13
export const InApps : UAParserExt ;
14
14
export const Libraries : UAParserExt ;
15
- export const MediaPlayers : UAParserExt ;
15
+ export const MediaPlayers : UAParserExt ;
16
+ export const Vehicles : UAParserExt ;
Original file line number Diff line number Diff line change @@ -321,6 +321,24 @@ const Libraries = Object.freeze({
321
321
]
322
322
} ) ;
323
323
324
+ /////////////
325
+ // VEHICLES
326
+ ////////////
327
+
328
+ const Vehicles = Object . freeze ( {
329
+ device : [
330
+ [
331
+ / d i l i n k .+ ( b y d ) a u t o / i, // BYD
332
+ ] , [ VENDOR ] , [
333
+
334
+ / ( r i v i a n ) ( r 1 t ) / i, // Rivian
335
+ ] , [ VENDOR , MODEL ] , [
336
+
337
+ / v c c .+ n e t f r o n t / i, // Volvo
338
+ ] , [ [ VENDOR , 'Volvo' ] ]
339
+ ]
340
+ } ) ;
341
+
324
342
//////////
325
343
// BOTS
326
344
/////////
@@ -343,5 +361,6 @@ module.exports = {
343
361
Fetchers,
344
362
InApps,
345
363
Libraries,
346
- MediaPlayers
364
+ MediaPlayers,
365
+ Vehicles
347
366
} ;
You can’t perform that action at this time.
0 commit comments