Comparing version 0.1.5 to 0.1.6
@@ -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"); | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4036066
298052