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>
13 lines
No EOL
261 B
Text
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);
|
|
}
|
|
} |