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

stemmer

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stemmer - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

benchmark/index.js

@@ -54,3 +54,3 @@ 'use strict';

suite('natural - fails on 1229 out of 23532 unit tests', function () {
suite('natural - fails on 558 out of 23532 unit tests', function () {
bench('op/s * 1,000', function (next) {

@@ -57,0 +57,0 @@ var iterator = -1,

@@ -5,3 +5,3 @@ {

"description": "A pretty fast implementation of the Porter Stemmer algorithm",
"version": "0.1.0",
"version": "0.1.1",
"keywords": [

@@ -8,0 +8,0 @@ "martin",

0.1.1 / 2014-08-30
==================
* Fix: add support for mixed-case input
* Update mocha
* Added components to gitignore
* Update error-count of Natural
* Update Natural description with new issue link
* Update eslint, istanbul
0.1.0 / 2014-07-08

@@ -3,0 +13,0 @@ ==================

@@ -99,3 +99,3 @@ 'use strict';

value = value.toString();
value = value.toString().toLowerCase();

@@ -102,0 +102,0 @@ if (value.length < 3) {

{
"name": "stemmer",
"version": "0.1.0",
"version": "0.1.1",
"description": "A pretty fast implementation of the Porter Stemmer algorithm",

@@ -14,7 +14,7 @@ "keywords": [

"devDependencies": {
"eslint": "^0.6.2",
"istanbul": "~0.2.11",
"eslint": "^0.7.4",
"istanbul": "^0.3.0",
"jscs": "^1.5.3",
"matcha": "^0.5.0",
"mocha": "~1.20.1"
"mocha": "^1.20.4"
},

@@ -21,0 +21,0 @@ "repository": {

@@ -29,3 +29,3 @@ # stemmer [![Build Status](https://travis-ci.org/wooorm/stemmer.svg?branch=master)](https://travis-ci.org/wooorm/stemmer) [![Coverage Status](https://img.shields.io/coveralls/wooorm/stemmer.svg)](https://coveralls.io/r/wooorm/stemmer?branch=master)

- [NaturalNode/natural](https://github.com/NaturalNode/natural) — Currently [buggy](https://github.com/NaturalNode/natural/issues/167).
- [NaturalNode/natural](https://github.com/NaturalNode/natural) — Currently [buggy](https://github.com/NaturalNode/natural/issues/176).
- [jedp/porter-stemmer](https://github.com/jedp/porter-stemmer) — Has a nice memorizing feature, which might be useful!

@@ -46,9 +46,9 @@

stemmer — this module
751 op/s » op/s * 1,000
747 op/s » op/s * 1,000
porterStemmer
363 op/s » op/s * 1,000
367 op/s » op/s * 1,000
natural - fails on 1229 out of 23532 unit tests
69 op/s » op/s * 1,000
natural - fails on 558 out of 23532 unit tests
59 op/s » op/s * 1,000
```

@@ -55,0 +55,0 @@

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