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

xliff

Package Overview
Dependencies
Maintainers
2
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xliff - npm Package Compare versions

Comparing version 4.1.3 to 4.1.4

2

package.json
{
"name": "xliff",
"version": "4.1.3",
"version": "4.1.4",
"description": "xliff2js and js2xliff converter xliff utils",

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

@@ -22,3 +22,3 @@ const convert = require('xml-js');

const xliffRoot = xmlObj.elements[0];
const xliffRoot = xmlObj.elements.find((ele) => ele.name === 'xliff');

@@ -34,3 +34,3 @@ const srcLang = xliffRoot.elements[0].attributes['source-language'];

const body = file.elements[0];
const body = file.elements.find((e) => e.name === 'body');
const transUnits = body.elements;

@@ -37,0 +37,0 @@

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