aboutsummaryrefslogtreecommitdiff
path: root/src/tools/json-diff/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/json-diff/index.ts')
-rw-r--r--src/tools/json-diff/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/json-diff/index.ts b/src/tools/json-diff/index.ts
new file mode 100644
index 0000000..7c4c1ee
--- /dev/null
+++ b/src/tools/json-diff/index.ts
@@ -0,0 +1,12 @@
+import { CompareArrowsRound } from '@vicons/material';
+import { defineTool } from '../tool';
+
+export const tool = defineTool({
+ name: 'JSON diff',
+ path: '/json-diff',
+ description: 'Compare two JSON objects and get the differences between them.',
+ keywords: ['json', 'diff', 'compare', 'difference', 'object', 'data'],
+ component: () => import('./json-diff.vue'),
+ icon: CompareArrowsRound,
+ createdAt: new Date('2023-04-20'),
+});
ig-run'>jarred/fix-issue-with-tsconfig-run Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/wasm.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-06-22Update index.d.tsGravatar Jarred Sumner 1-0/+1
2022-06-22types for `bun:jsc`Gravatar Jarred Sumner 2-1/+37
2022-06-22Slightly customize the `events` polyfill so it uses ESMGravatar Jarred Sumner 1-1/+522
2022-06-22Fix memory bugs in escapeHTML & arrayBufferToStringGravatar Jarred Sumner 1-65/+61