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>
14 lines
283 B
Text
14 lines
283 B
Text
let Value = require('../value')
|
|
|
|
class FilterValue extends Value {
|
|
constructor(name, prefixes) {
|
|
super(name, prefixes)
|
|
if (name === 'filter-function') {
|
|
this.name = 'filter'
|
|
}
|
|
}
|
|
}
|
|
|
|
FilterValue.names = ['filter', 'filter-function']
|
|
|
|
module.exports = FilterValue
|