Socket
Socket
Sign inDemoInstall

saxen

Package Overview
Dependencies
0
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.4 to 1.1.0

9

CHANGELOG.md

@@ -0,1 +1,10 @@

# 1.1.0
* `FEAT`: handle non-xml input
# 1.0.4
* `DOCS`: better `@type` annotations
* `CHORE`: save a few bytes in decoding logic
# 1.0.3

@@ -2,0 +11,0 @@

2

package.json

@@ -16,3 +16,3 @@ {

],
"version": "1.0.4",
"version": "1.1.0",
"main": "./parser.js",

@@ -19,0 +19,0 @@ "bugs": {

@@ -299,3 +299,3 @@ 'use strict';

tagEnd = false,
j = 0, i = 0,
i = 0, j = 0,
x, y, q, w,

@@ -602,3 +602,4 @@ xmlns,

if (i === -1) { // конец разбора
// parse end
if (i === -1) {
if (nodeStack.length) {

@@ -608,2 +609,6 @@ return handleError('unexpected end of file');

if (j === 0) {
return handleError('missing start tag');
}
return;

@@ -610,0 +615,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc