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.11 to 0.4.12

2

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

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

@@ -320,2 +320,3 @@ import {undef} from "../helpers/undef.js"

return this.each(function(){
this.dispatchEvent(e)

@@ -322,0 +323,0 @@ })

@@ -79,7 +79,3 @@ import {appendScript} from "./script";

})
},
clear: function(){
return this.empty()
}
}

@@ -69,3 +69,3 @@ import {toType} from "../helpers/to-type.js";

serialize(o, joinWith){
serialize(o, joinWith ){
let result

@@ -85,2 +85,12 @@

}
}
export const SerializeForm = {
serialize(joinWith){
const form = this[0]
if (!(form instanceof HTMLFormElement)) {
throw new Error(`You must call this function for form element!`)
}
return Serialize.serialize(form, joinWith)
}
}

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