mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
feat(new-tool): math evaluator
This commit is contained in:
parent
8fb0e6af9c
commit
433ba2a3e5
3 changed files with 83 additions and 0 deletions
39
src/tools/math-evaluator/index.ts
Normal file
39
src/tools/math-evaluator/index.ts
Normal file
|
@ -0,0 +1,39 @@
|
|||
import { Math } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Math evaluator',
|
||||
path: '/math-evaluator',
|
||||
description: `Evaluate math expression, like a calculator on steroid (you can use function like sqrt, cos, sin, abs, ...)`,
|
||||
keywords: [
|
||||
'math',
|
||||
'evaluator',
|
||||
'acos',
|
||||
'acosh',
|
||||
'acot',
|
||||
'acoth',
|
||||
'acsc',
|
||||
'acsch',
|
||||
'asec',
|
||||
'asech',
|
||||
'asin',
|
||||
'asinh',
|
||||
'atan',
|
||||
'atan2',
|
||||
'atanh',
|
||||
'cos',
|
||||
'cosh',
|
||||
'cot',
|
||||
'coth',
|
||||
'csc',
|
||||
'csch',
|
||||
'sec',
|
||||
'sech',
|
||||
'sin',
|
||||
'sinh',
|
||||
'tan',
|
||||
'tanh',
|
||||
],
|
||||
component: () => import('./math-evaluator.vue'),
|
||||
icon: Math,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue