mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 07:16:15 -04:00

* fix(docker-run-to-docker-compose-converter): use different version of converter which suppports more options and is mor failsafe * chore(docker-run-to-docker-compose-converter): add pnpm-lock.yaml again which was accidently removed in last commit * chore(docker-run-to-docker-compose-converter): add fixed version of composerize-ts * chore(user-agent-parser): changes requested by code review * chore(user-agent-parser): some more changes requested by code review
12 lines
504 B
TypeScript
12 lines
504 B
TypeScript
import { Browser } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'User-agent parser',
|
|
path: '/user-agent-parser',
|
|
description: 'Detect and parse Browser, Engine, OS, CPU, and Device type/model from an user-agent string.',
|
|
keywords: ['user', 'agent', 'parser', 'browser', 'engine', 'os', 'cpu', 'device', 'user-agent', 'client'],
|
|
component: () => import('./user-agent-parser.vue'),
|
|
icon: Browser,
|
|
createdAt: new Date('2023-04-06'),
|
|
});
|