Rocky_Mountain_Vending/.pnpm-store/v10/files/bf/da064533992b91cfc0156b5d49f42c6834b8de22ef3355722d50169643761a7d4b1751a4d8e86f2d0725c307ac226c5d4eb61d4da91e8cd31972737621aaa1
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

22 lines
No EOL
846 B
Text

// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as Platform from '../../../core/platform/platform.js';
import * as Types from '../types/types.js';
const updateCountersByProcess = new Map();
export function reset() {
updateCountersByProcess.clear();
}
export function handleEvent(event) {
if (Types.Events.isUpdateCounters(event)) {
const countersForProcess = Platform.MapUtilities.getWithDefault(updateCountersByProcess, event.pid, () => []);
countersForProcess.push(event);
updateCountersByProcess.set(event.pid, countersForProcess);
}
}
export async function finalize() {
}
export function data() {
return { updateCountersByProcess };
}
//# sourceMappingURL=MemoryHandler.js.map