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

angular-estree-parser

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-estree-parser - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="1.1.1"></a>
## [1.1.1](https://github.com/ikatyang/angular-estree-parser/compare/v1.1.0...v1.1.1) (2018-10-26)
### Bug Fixes
* **transform:** Binary (`&&`, `||`) -> LogicalExpression ([#8](https://github.com/ikatyang/angular-estree-parser/issues/8)) ([8e954c1](https://github.com/ikatyang/angular-estree-parser/commit/8e954c1))
<a name="1.1.0"></a>

@@ -7,0 +17,0 @@ # [1.1.0](https://github.com/ikatyang/angular-estree-parser/compare/v1.0.0...v1.1.0) (2018-10-19)

16

lib/transform.js

@@ -15,7 +15,13 @@ "use strict";

})
: _c('BinaryExpression', {
left: _t(left),
right: _t(right),
operator: operation,
});
: operation === '&&' || operation === '||'
? _c('LogicalExpression', {
left: _t(left),
right: _t(right),
operator: operation,
})
: _c('BinaryExpression', {
left: _t(left),
right: _t(right),
operator: operation,
});
}

@@ -22,0 +28,0 @@ case 'BindingPipe': {

{
"name": "angular-estree-parser",
"version": "1.1.0",
"version": "1.1.1",
"description": "A parser that converts Angular source code into an ESTree-compatible form",

@@ -35,3 +35,3 @@ "keywords": [],

"@types/babel__parser": "7.0.0",
"@types/jest": "23.3.5",
"@types/jest": "23.3.7",
"@types/prettier": "1.13.2",

@@ -38,0 +38,0 @@ "jest": "23.6.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