Socket
Socket
Sign inDemoInstall

theprogrammablemind_4wp

Package Overview
Dependencies
Maintainers
1
Versions
454
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

theprogrammablemind_4wp - npm Package Compare versions

Comparing version 7.3.9-beta.14 to 7.3.9-beta.15

2

package.json

@@ -64,4 +64,4 @@ {

},
"version": "7.3.9-beta.14",
"version": "7.3.9-beta.15",
"license": "ISC"
}

@@ -1429,3 +1429,12 @@ // lookup = (name) => returns <config>

initializer (fn, { initAfterApi = false } = {}) {
initializer (fn, options = {}) {
if (options) {
for (let option of Object.keys(options)) {
const validOptions = ['initAfterApi']
if (!['initAfterApi'].includes(option)) {
throw `For Config.initializer, unrecognized option ${option}. The valid options are ${validOptions}`
}
}
}
const { initAfterApi = false } = options;
this.wasInitialized = false

@@ -1432,0 +1441,0 @@ this.initAfterApi = initAfterApi

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