mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 01:27:31 -04: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"]; |