1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-27 09:15:25 +00:00
notes/node_modules/stylehacks/dist/exists.js

9 lines
224 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
"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"];