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

@nlpjs/nlu

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlpjs/nlu - npm Package Compare versions

Comparing version 4.9.3 to 4.10.1

8

package.json
{
"name": "@nlpjs/nlu",
"version": "4.9.3",
"version": "4.10.1",
"description": "Natural Language Understanding",

@@ -28,8 +28,8 @@ "author": {

"dependencies": {
"@nlpjs/core": "^4.9.3",
"@nlpjs/core": "^4.10.1",
"@nlpjs/language-min": "^4.6.0",
"@nlpjs/neural": "^4.9.3",
"@nlpjs/neural": "^4.10.1",
"@nlpjs/similarity": "^4.9.1"
},
"gitHead": "defca61ee1127e88d73a0808c544028fa4f0e7f5"
"gitHead": "1eae0c913e03211f550c2b610fc2bf620b1b0939"
}

@@ -98,2 +98,14 @@ /*

removeLanguage(locales) {
if (Array.isArray(locales)) {
locales.forEach((locale) => this.removeLanguage(locale));
} else {
delete this.domainManagers[locales];
const index = this.locales.indexOf(locales);
if (index !== -1) {
this.locales.splice(index, 1);
}
}
}
guessLanguage(srcInput) {

@@ -100,0 +112,0 @@ const input = srcInput;

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