New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

chaimel

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chaimel - npm Package Compare versions

Comparing version

to
1.1.0

1

chaimel.js

@@ -39,2 +39,3 @@ var chai = require("chai");

"to.have.keys",
"to.have.length",
"to.have.length.above",

@@ -41,0 +42,0 @@ "to.have.length.greater.than",

@@ -22,2 +22,3 @@ var expect = require("./");

[[1, 2, 3], "toHaveLengthWithin", 2, 4],
[[1, 2, 3], "toHaveLength", 3],
[42, "toBeWithin", 41, 43],

@@ -24,0 +25,0 @@ [[], "toBeInstanceof", Array],

2

package.json
{
"name": "chaimel",
"version": "1.0.1",
"version": "1.1.0",
"description": "Expose chai expect chains as camelCase instead of series.of.dots",

@@ -5,0 +5,0 @@ "main": "chaimel.js",

@@ -23,2 +23,3 @@ # chaimel

- It's awkward to speak and hear. Do you say the "dot"s or just imply them?
- It doesn't work well with text editor autocomplete, whereas `camelCase` does
- I also personally find this kind of use of `Object.defineProperty` unidiomatic for the golden age of JavaScript. It's fully standard and fine, but my opinion is it fundamentally makes the language more magical and ruby-like and these are drawbacks not advantages.

@@ -25,0 +26,0 @@ - It was pretty quick and easy to create this module, so I did