Socket
Socket
Sign inDemoInstall

pos

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pos - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

2

lexer.js

@@ -17,3 +17,3 @@ /*!

unblank: /\S/,
punctuation: /[\/\.\,\?\!\"\']/ig
punctuation: /[\/\.\,\?\!\"\'\:\;]/ig
}

@@ -20,0 +20,0 @@

@@ -7,3 +7,3 @@ {

"author": "Percy Wegmann",
"version": "0.1.5",
"version": "0.1.6",
"licenses": [{

@@ -10,0 +10,0 @@ "type": "LGPL",

@@ -86,4 +86,5 @@ /*!

// Attempt to convert into a number
if (parseFloat(words[i]))
if (!isNaN(parseFloat(words[i]))) {
ret[i] = "CD";
}
}

@@ -90,0 +91,0 @@ // rule 3: convert a noun to a past participle if words[i] ends with "ed"

@@ -20,1 +20,2 @@ var pos = require('./main');

console.log("Tokenized and tagged " + words.length + " words in " + difference + " milliseconds");
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