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

english-plurals-list

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

english-plurals-list - npm Package Compare versions

Comparing version 0.12.0 to 0.12.1

coverage/lcov-report/base.css

6

package.json
{
"name": "english-plurals-list",
"version": "0.12.0",
"version": "0.12.1",
"description": "English irregular plurals list, based on WordNet",

@@ -8,3 +8,3 @@ "main": "dist/plurals.json",

"clean": "rm -rf dist",
"test": "mocha",
"test": "nyc --reporter=lcov --reporter=text mocha",
"build": "tsc && gulp build"

@@ -24,3 +24,3 @@ },

"license": "Apache-2.0",
"gitHead": "9223cdd558d1775f866f99921e3391d5d7cdc4f2"
"gitHead": "e259475c0e729de8cd17a7702e90c11b9f725348"
}

@@ -11,3 +11,3 @@ const assert = require('assert');

describe('english-plurals-list', function() {
describe('english-plurals-list', function () {
for (let i = 0; i < testCasesPlural.length; i++) {

@@ -17,9 +17,9 @@ const testCase = testCasesPlural[i];

const expected = testCase[1];
it(`${singular} => ${expected}`, function() {
it(`${singular} => ${expected}`, function () {
assert.strictEqual(EnglishPlurals[singular], expected);
});
}
it(`brother was removed`, function() {
it(`brother was removed`, function () {
assert(EnglishPlurals['brother'] == null);
});
});

Sorry, the diff of this file is not supported yet

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