Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@asamuzakjp/dom-selector

Package Overview
Dependencies
Maintainers
1
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@asamuzakjp/dom-selector

Retrieve DOM node from the given CSS selector.

  • 0.4.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

DOM Selector

build CodeQL npm (scoped)

Retrieve DOM node from the given CSS selector. Experimental

Install

npm i @asamuzakjp/dom-selector

Usage

const {
  matches, closest, querySelector, querySelectorAll
} = require('@asamuzakjp/dom-selector');
Table of Contents

matches(selector, node)

Implementation of Element.matches().

Parameters
  • selector string CSS selector
  • node object Referenced Element node

Returns boolean Result

closest(selector, node)

Implementation of Element.closest().

Parameters
  • selector string CSS selector
  • node object Referenced Element node

Returns object? Matched node

querySelector(selector, refPoint)

Implementation of Document.querySelector(), Element.querySelector().

Parameters
  • selector string CSS selector
  • refPoint object Reference point. Document or Element node

Returns object? Matched node

querySelectorAll(selector, refPoint)

Implementation of Document.querySelectorAll(), Element.querySelectorAll(). NOTE: returns Array, not NodeList.

Parameters
  • selector string CSS selector
  • refPoint object Reference point. Document or Element node

Returns Array<(object | undefined)> Array of matched nodes

Acknowledgments

The following resources have been of great help in the development of the DOM Selector.

FAQs

Package last updated on 10 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc