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

@nlpjs/ner

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlpjs/ner - npm Package Compare versions

Comparing version 4.9.2 to 4.9.3

6

package.json
{
"name": "@nlpjs/ner",
"version": "4.9.2",
"version": "4.9.3",
"description": "Named Entity Recognition",

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

"dependencies": {
"@nlpjs/core": "^4.9.2",
"@nlpjs/core": "^4.9.3",
"@nlpjs/language-min": "^4.6.0",
"@nlpjs/similarity": "^4.9.1"
},
"gitHead": "956809b1d31b96962f588bff97aef9b73794af4d"
"gitHead": "defca61ee1127e88d73a0808c544028fa4f0e7f5"
}

@@ -313,6 +313,14 @@ /*

let output = await this.decideRules(input);
output = await this.cache.extractEnum.run(output);
output = await this.cache.extractRegex.run(output);
output = await this.cache.extractTrim.run(output);
output = await this.cache.extractBuiltin.run(output);
if (this.cache.extractEnum) {
output = await this.cache.extractEnum.run(output);
}
if (this.cache.extractRegex) {
output = await this.cache.extractRegex.run(output);
}
if (this.cache.extractTrim) {
output = await this.cache.extractTrim.run(output);
}
if (this.cache.extractBuiltin) {
output = await this.cache.extractBuiltin.run(output);
}
output = await this.reduceEdges(output);

@@ -319,0 +327,0 @@ return output;

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