contains.js 202 B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = contains;
  6. function contains(root, n) {
  7. if (!root) {
  8. return false;
  9. }
  10. return root.contains(n);
  11. }