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>
19 lines
386 B
Text
19 lines
386 B
Text
let Declaration = require('../declaration')
|
|
|
|
class Filter extends Declaration {
|
|
/**
|
|
* Check is it Internet Explorer filter
|
|
*/
|
|
check(decl) {
|
|
let v = decl.value
|
|
return (
|
|
!v.toLowerCase().includes('alpha(') &&
|
|
!v.includes('DXImageTransform.Microsoft') &&
|
|
!v.includes('data:image/svg+xml')
|
|
)
|
|
}
|
|
}
|
|
|
|
Filter.names = ['filter']
|
|
|
|
module.exports = Filter
|