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

node.extend

Package Overview
Dependencies
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node.extend - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

73

.jscs.json
{
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
"additionalRules": [],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"],
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
"disallowSpaceAfterKeywords": [],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"],
"requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true },
"requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true },
"disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
"requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true },
"disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true },
"disallowSpaceAfterKeywords": [],
"disallowSpacesInsideParentheses": true,
"requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true },
"requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true },
"disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true },
"requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true },
"disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true },
"disallowSpacesInsideArrayBrackets": true,
"disallowSpacesInsideParentheses": true,
"disallowQuotedKeysInObjects": "allButReserved",
"disallowSpacesInsideArrayBrackets": true,
"disallowSpaceAfterObjectKeys": true,
"disallowQuotedKeysInObjects": "allButReserved",
"requireCommaBeforeLineBreak": true,
"disallowSpaceAfterObjectKeys": true,
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"requireSpaceAfterPrefixUnaryOperators": [],
"requireCommaBeforeLineBreak": true,
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"requireSpaceBeforePostfixUnaryOperators": [],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"requireSpaceAfterPrefixUnaryOperators": [],
"disallowSpaceBeforeBinaryOperators": [],
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"requireSpaceBeforePostfixUnaryOperators": [],
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"disallowSpaceAfterBinaryOperators": [],
"disallowSpaceBeforeBinaryOperators": [],
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"disallowImplicitTypeConversion": ["binary", "string"],
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="],
"disallowSpaceAfterBinaryOperators": [],
"disallowKeywords": ["with", "eval"],
"disallowImplicitTypeConversion": ["binary", "string"],
"validateLineBreaks": "LF",
"disallowKeywords": ["with", "eval"],
"requireKeywordsOnNewLine": [],
"disallowKeywordsOnNewLine": ["else"],
"requireKeywordsOnNewLine": [],
"disallowKeywordsOnNewLine": ["else"],
"requireLineFeedAtFileEnd": true,
"requireLineFeedAtFileEnd": true,
"disallowTrailingWhitespace": true,
"disallowTrailingWhitespace": true,
"excludeFiles": ["node_modules/**", "vendor/**"],
"disallowTrailingComma": true,
"disallowMultipleLineStrings": true,
"excludeFiles": ["node_modules/**", "vendor/**"],
"additionalRules": []
"disallowMultipleLineStrings": true,
"requireDotNotation": true,
"requireParenthesesAroundIIFE": true,
"validateLineBreaks": "LF",
"validateQuoteMarks": {
"escape": true,
"mark": "'"
}
}
{
"name": "node.extend",
"version": "1.1.2",
"version": "1.1.3",
"description": "A port of jQuery.extend that actually works on node.js",
"keywords": ["extend", "jQuery", "jQuery extend", "clone", "copy", "inherit"],
"keywords": [
"extend",
"jQuery",
"jQuery extend",
"clone",
"copy",
"inherit"
],
"author": "dreamerslab <ben@dreamerslab.com>",
"dependencies": {
"is": "~2.0.0"
"is": "~2.1.0"
},
"devDependencies": {
"tape": "~2.14.0",
"covert": "~1.0.0",
"jscs": "~1.5.9"
"tape": "~3.0.1",
"covert": "1.0.0",
"jscs": "~1.7.3"
},

@@ -20,3 +27,6 @@ "repository": {

"contributors": [
{ "name": "Jordan Harband", "twitter": "https://twitter.com/ljharb" }
{
"name": "Jordan Harband",
"twitter": "https://twitter.com/ljharb"
}
],

@@ -30,3 +40,5 @@ "main": "index",

},
"engines": ["node >= 0.4"],
"engines": [
"node >= 0.4"
],
"testling": {

@@ -49,10 +61,13 @@ "files": "test/index.js",

},
"licenses": [{
"type": "MIT",
"url" : "http://en.wikipedia.org/wiki/MIT_License"
}, {
"type": "GPL",
"url" : "http://en.wikipedia.org/wiki/GNU_General_Public_License"
}]
"licenses": [
{
"type": "MIT",
"url": "http://en.wikipedia.org/wiki/MIT_License"
},
{
"type": "GPL",
"url": "http://en.wikipedia.org/wiki/GNU_General_Public_License"
}
]
}

@@ -5,5 +5,7 @@ # node.extend

[![Build Status][3]][4] [![dependency status][5]][6]
[![Build Status][travis-svg]][travis-url]
[![dependency status][deps-svg]][deps-url]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![browser support][1]][2]
[![browser support][testling-png]][testling-url]

@@ -66,10 +68,12 @@

[1]: https://ci.testling.com/dreamerslab/node.extend.svg
[2]: https://ci.testling.com/dreamerslab/node.extend
[3]: https://travis-ci.org/dreamerslab/node.extend.svg
[4]: https://travis-ci.org/dreamerslab/node.extend
[5]: https://david-dm.org/dreamerslab/node.extend.svg
[6]: https://david-dm.org/dreamerslab/node.extend
[testling-png]: https://ci.testling.com/dreamerslab/node.extend.png
[testling-url]: https://ci.testling.com/dreamerslab/node.extend
[travis-svg]: https://travis-ci.org/dreamerslab/node.extend.svg
[travis-url]: https://travis-ci.org/dreamerslab/node.extend
[deps-svg]: https://david-dm.org/dreamerslab/node.extend.svg
[deps-url]: https://david-dm.org/dreamerslab/node.extend
[dev-deps-svg]: https://david-dm.org/dreamerslab/node.extend/dev-status.svg
[dev-deps-url]: https://david-dm.org/dreamerslab/node.extend#info=devDependencies
[jQuery]: http://api.jquery.com/jQuery.extend/
[@ljharb]: https://twitter.com/ljharb
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