mirror of
https://github.com/thangisme/notes.git
synced 2025-01-03 12:16:36 -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"]; |