Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@existdb/node-exist

Package Overview
Dependencies
Maintainers
3
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@existdb/node-exist - npm Package Compare versions

Comparing version
5.0.0
to
5.0.1
+10
-4
index.js

@@ -46,7 +46,13 @@ /**

function applyEachWith (module, client) {
const methods = {}
for (const method in module) {
methods[method] = applyWith(module[method], client)
const applied = {}
for (const property in module) {
const value = module[property]
// leave non-functions untouched
if (typeof value !== 'function') {
applied[property] = value
continue
}
applied[property] = applyWith(value, client)
}
return methods
return applied
}

@@ -53,0 +59,0 @@

@@ -54,3 +54,3 @@ {

},
"version": "5.0.0"
"version": "5.0.1"
}

@@ -23,3 +23,3 @@ # node-exist

__NOTE:__ If you are looking for a command line client have a look at [xst](https://github.com/line-o/xst)
__NOTE:__ If you are looking for a command line client have a look at [xst](https://github.com/eXist-db/xst)

@@ -500,3 +500,3 @@ ## Use

__NOTE:__ Have a look at [xst](https://github.com/line-o/xst) for a CLI client built with node-exist.
__NOTE:__ Have a look at [xst](https://github.com/eXist-db/xst) for a CLI client built with node-exist.

@@ -503,0 +503,0 @@ ## Test