| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- export const diff = {
- before: {
- name: "src/greet.ts",
- contents: `export function greet(name: string) {
- return \`Hello, \${name}!\`
- }
- `,
- },
- after: {
- name: "src/greet.ts",
- contents: `export function greet(name: string, excited = false) {
- const message = \`Hello, \${name}!\`
- return excited ? \`\${message}!!\` : message
- }
- `,
- },
- }
- export const code = {
- name: "src/calc.ts",
- contents: `export function sum(values: number[]) {
- return values.reduce((total, value) => total + value, 0)
- }
- export function average(values: number[]) {
- if (values.length === 0) return 0
- return sum(values) / values.length
- }
- `,
- }
- export const markdown = [
- "# Markdown",
- "",
- "Use **Markdown** for rich text.",
- "",
- "## Highlights",
- "- Headings, lists, and code blocks",
- "- Inline `code` and links",
- "",
- "```ts",
- "export const value = 42",
- "```",
- "",
- "More at https://example.com/docs",
- ].join("\n")
- export const changes = {
- additions: 18,
- deletions: 6,
- }
|