mirror of
https://github.com/thangisme/notes.git
synced 2025-01-05 09:56:26 -05:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
|
"use strict";
|
||
|
|
||
|
exports.__esModule = true;
|
||
|
exports.default = exists;
|
||
|
function exists(selector, index, value) {
|
||
|
var node = selector.at(index);
|
||
|
return node && node.value === value;
|
||
|
}
|
||
|
module.exports = exports["default"];
|