projecte_ionic/node_modules/stylehacks/dist/exists.js
2022-02-09 18:30:03 +01:00

13 lines
No EOL
287 B
JavaScript
Executable file

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exists;
function exists(selector, index, value) {
const node = selector.at(index);
return node && node.value && node.value.toLowerCase() === value;
}
module.exports = exports.default;