mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-19 05:42:08 +02:00
4 lines
149 B
JavaScript
4 lines
149 B
JavaScript
'use strict';
|
|
/** @type {(node: import('postcss').Declaration) => boolean} */
|
|
module.exports = (node) => node.value.search(/var\s*\(\s*--/i) !== -1;
|