Socket
Socket
Sign inDemoInstall

wink-pos-tagger

Package Overview
Dependencies
5
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.3 to 1.3.4

2

package.json
{
"name": "wink-pos-tagger",
"version": "1.3.3",
"version": "1.3.4",
"description": "English Part-of-speech (POS) tagger",

@@ -5,0 +5,0 @@ "keywords": [

@@ -53,3 +53,5 @@ // wink-pos-tagger

if ( token.tag === 'punctuation' ) {
token.pos = punctuationPOS[ token.value ];
// `|| token.value` is a catch all clause! In other words, unknown
// punctuation will have a pos as **it's value**.
token.pos = punctuationPOS[ token.value ] || token.value;
return [ token.pos ];

@@ -56,0 +58,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