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

@tejp/xmlp

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tejp/xmlp - npm Package Compare versions

Comparing version 0.4.2 to 0.4.3-experimental.1

12

dist/context.js

@@ -6,5 +6,11 @@ // Copyright 2020 Masataka Kurihara. All rights reserved. MIT license.

const i = qName.indexOf(':');
const q = i < 0 ? ['', qName] : qName.split(':');
this._prefix = q[0];
this._localPart = q[1];
if (i < 0) {
this._prefix = '';
this._localPart = qName;
}
else {
const q = qName.split(':');
this._prefix = q[0];
this._localPart = q[1];
}
}

@@ -11,0 +17,0 @@ get qName() {

{
"name": "@tejp/xmlp",
"version": "0.4.2",
"version": "0.4.3-experimental.1",
"description": "Typescript XML parser (SAX and PullParser)",

@@ -5,0 +5,0 @@ "repository": "https://github.com/sth/xmlp.git",

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