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

@olton/query

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@olton/query - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

2

package.json
{
"name": "@olton/query",
"version": "0.4.3",
"version": "0.4.4",
"description": "Query is a minimalist JavaScript library for manipulating with HTML Elements",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -37,2 +37,16 @@ import {each} from "../helpers/each.js";

hasAttr(name){
return !!this.attr(name)
},
hasAttrs(names){
let result = true
for(let name of names) {
if (typeof this.attr(name) === 'undefined') {
return false
}
}
return result
},
removeAttr: function(name){

@@ -39,0 +53,0 @@ let attributes

Sorry, the diff of this file is not supported yet

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