Socket
Socket
Sign inDemoInstall

@orionmd/dcmjs-utils

Package Overview
Dependencies
11
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.1.0

.eslintrc.json.disable

5

package.json
{
"name": "@orionmd/dcmjs-utils",
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",

@@ -13,3 +13,4 @@ "license": "MIT",

"dependencies": {
"@orionmd/dcmjs": "^0.3.6"
"@orionmd/dcmjs": "^0.11.0",
"dcmjs": "^0.16.2"
},

@@ -16,0 +17,0 @@ "devDependencies": {

@@ -41,5 +41,3 @@ // const dcmjs = require('dcmjs');

async function dump(options = {}) {
const {
path: dumpPath, pattern, ignoreErrors, naturalize = true,
} = options;
const { path: dumpPath, pattern, ignoreErrors, naturalize = true, untilTag } = options;

@@ -51,3 +49,3 @@ // check if path is a directory

if (pattern) {
filenames = filenames.filter(filename => checkPattern(filename, pattern));
filenames = filenames.filter((filename) => checkPattern(filename, pattern));
}

@@ -61,3 +59,3 @@ return Promise.all(

filePath,
dataset: await getFileDataset(filePath, { ignoreErrors, naturalize }),
dataset: await getFileDataset(filePath, { ignoreErrors, naturalize, untilTag }),
};

@@ -71,3 +69,3 @@ } catch (err) {

}
}),
})
);

@@ -74,0 +72,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