New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nut

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nut - npm Package Compare versions

Comparing version 0.1.13 to 0.1.14

10

nut.js
/*
nut, the concise CSS selector engine
Version : 0.1.13
Version : 0.1.14
Author : Aurélien Delogu (dev@dreamysource.fr)

@@ -60,3 +60,9 @@ Homepage : https://github.com/pyrsmk/nut

getNodeFromIdSelector=function(selector,context){
return [document.getElementById(selector)];
var node=document.getElementById(selector);
if(node===null){
return [];
}
else{
return [node];
}
},

@@ -63,0 +69,0 @@

2

package.json
{
"name" : "nut",
"description" : "The concise CSS selector engine",
"version" : "0.1.13",
"version" : "0.1.14",
"author" : "Aurélien Delogu <pyrsmk@dreamysource.fr> (http://dreamysource.fr)",

@@ -6,0 +6,0 @@ "repository" : {

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