method Performance.clearMarks Usage in Deno```typescript import { type Performance } from "node:node__perf_hooks.d.ts"; ``` Performance.clearMarks(name?: string): void If `name` is not provided, removes all `PerformanceMark` objects from the Performance Timeline. If `name` is provided, removes only the named mark. Parameters optional name: string Return Type void