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

@cumulus/cmr-client

Package Overview
Dependencies
Maintainers
8
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cumulus/cmr-client - npm Package Compare versions

Comparing version 1.16.0 to 1.16.1

6

package.json
{
"name": "@cumulus/cmr-client",
"version": "1.16.0",
"version": "1.16.1",
"engines": {

@@ -34,3 +34,3 @@ "node": ">=8.10.0"

"dependencies": {
"@cumulus/logger": "1.16.0",
"@cumulus/logger": "1.16.1",
"got": "^9.6.0",

@@ -49,3 +49,3 @@ "lodash.get": "^4.4.2",

},
"gitHead": "00942fc9bfd7569506e0f8a2111297e1b3a85e43"
"gitHead": "d89f54a4550a548eab4f39e3aeacfd7259859604"
}
'use strict';
const { promisify } = require('util');
const xml2js = require('xml2js');
exports.promisify = (fn) => (...args) =>
new Promise((resolve, reject) => {
fn(...args, (err, obj) => {
if (err) reject(err);
resolve(obj);
});
});
async function parseXMLString(xmlString) {
const parseString = exports.promisify(xml2js.parseString);
const parseString = promisify(xml2js.parseString);
const xmlParseOptions = {

@@ -16,0 +9,0 @@ ignoreAttrs: true,

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