It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:
This commit is contained in:
13
backend/node_modules/stylehacks/src/exists.js
generated
vendored
Normal file
13
backend/node_modules/stylehacks/src/exists.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @param {import('postcss-selector-parser').Selector} selector
|
||||
* @param {number} index
|
||||
* @param {string} value
|
||||
* @return {boolean | undefined | ''}
|
||||
*/
|
||||
module.exports = function exists(selector, index, value) {
|
||||
const node = selector.at(index);
|
||||
|
||||
return node && node.value && node.value.toLowerCase() === value;
|
||||
};
|
||||
Reference in New Issue
Block a user