# component-closest

> Find the closest ancestor matching a selector string

Latest version **1.0.1** (published 2016-04-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install component-closest
pnpm add component-closest
yarn add component-closest
bun add component-closest
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-04-01 |
| First published | 2014-07-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | Jonathan Ong |
| Maintainers | mattmueller, ockham, tootallnate |

## Links

- npm: https://www.npmjs.com/package/component-closest
- Repository: https://github.com/component/closest
- Homepage: https://github.com/component/closest#readme
- Issues: https://github.com/component/closest/issues
- npm.io page: https://npm.io/package/component-closest

## Dependencies (1)

- [component-matches-selector](https://npm.io/package/component-matches-selector.md) ~0.1.6

## Recent versions

- 1.0.1 (latest) — 2016-04-01
- 1.0.0 — 2015-07-15
- 0.1.4 — 2014-07-27

## README

# Closest

Similar to jQuery's `$.fn.closest` and `$.fn.parents`.
Finds the closest parent that matches a selector.

## API

### closest(element, selector, scope)

* `element` - will check this elements parents
* `selector` - CSS selector to match parents
* `scope` - check this element and within. By default, `document.documentElement`.

Example:

```js
closest(document.body, 'html') === document.documentElement
closest(document.body, 'body') === document.body
closest(document.documentElement, 'body') == null
```

## License

The MIT License (MIT)

Copyright (c) 2013 Jonathan Ong me@jongleberry.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

---
_Source: https://npm.io/package/component-closest · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
