Rocky_Mountain_Vending/.pnpm-store/v10/files/59/12f5a5c92ff7291dd65e83eb7ca8b2daa3e70b85d124e7eee5544dc96b9bd5d6fcd0836a88b7481e78215830ff7999117d89995fa648f827c3045b229510a6
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

13 lines
No EOL
261 B
Text

import {TagPath} from './TagPath.js';
export default class TagPathMatcher{
constructor(stack,node){
this.stack = stack;
this.node= node;
}
match(path){
const tagPath = new TagPath(path);
return tagPath.match(this.stack, this.node);
}
}