Socket
Socket
Sign inDemoInstall

sentimentjs

Package Overview
Dependencies
63
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.0.2

example/app.css

4

baseWordsLayer/baseWordsLayerAnalysis.js

@@ -17,4 +17,4 @@ var sentimentWords = require('./baseWordsList');

// Make a lowercase copy of each word to compare against the base words library
var lowerCaseWord = word.toLowerCase();
// Make a lowercase copy of each word to compare against the base words library and remove ending punctuation
var lowerCaseWord = word.toLowerCase().replace(/[\.\!]/g, '');

@@ -21,0 +21,0 @@ // If the copied word matches a positive word in the library, add the original word to the positive words array

{
"name": "sentimentjs",
"version": "1.0.1",
"version": "1.0.2",
"description": "",

@@ -18,3 +18,6 @@ "main": "index.js",

},
"homepage": "https://github.com/crowd-parser/sentimentjs"
"homepage": "https://github.com/crowd-parser/sentimentjs",
"dependencies": {
"express": "^4.12.4"
}
}
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