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

babel-plugin-sitrep

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-sitrep - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

2

package.json
{
"name": "babel-plugin-sitrep",
"version": "0.1.0",
"version": "0.2.0",
"description": "Log all assignments and the return value of a function with a simple comment",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -14,7 +14,41 @@ # babel-plugin-sitrep

const b = 'bar'
let c = [a, b].map(x => x.charAt(0))
let c = [a, b].map(x => x)
return c.join('-')
}
// sitrep
var cb = x => x.charAt(0)
// sitrep
var cb = x => {
x = x + 2
x.charAt(0)
return x
}
// sitrep
var a = function () {
return 'foo'
}
const obj = {
// sitrep
fn() {
let a = 5
return a + 5
}
}
class Boom {
// sitrep
fire() {
let a = 2
return a + 5
}
}
```
`↓ ↓ ↓ ↓ ↓ ↓`
**Out**

@@ -25,12 +59,70 @@

function bar () {
var a = 'foo'
console.log("a", a);
const b = 'bar'
console.log("b", b);
let c = [a, b].map(x => x.charAt(0))
console.log("c", c);
var __$returnValue = c.join('-');
console.log("Return Value:", __$returnValue);
return __$returnValue;
console.log("function: bar ") ;
var a = 'foo';
console.log('a', a);
const b = 'bar';
console.log('b', b);
let c = [a, b].map(function (x) {
var _returnValue2 = x;
console.log('Return Value:', _returnValue2);
return _returnValue2;
});
console.log('c', c);
var _returnValue = c.join('-');
console.log('Return Value:', _returnValue);
return _returnValue;
}
// sitrep
var cb = function (x) {
var _returnValue3 = x.charAt(0);
console.log('Return Value:', _returnValue3);
return _returnValue3;
};
// sitrep
var cb = function (x) {
x = x + 2;
console.log('x', x);
x.charAt(0);
var _returnValue4 = x;
console.log('Return Value:', _returnValue4);
return _returnValue4;
};
// sitrep
var a = function () {
var _returnValue5 = 'foo';
console.log('Return Value:', _returnValue5);
return _returnValue5;
};
const obj = {
// sitrep
fn() {
let a = 5;
console.log('a', a);
var _returnValue6 = a + 5;
console.log('Return Value:', _returnValue6);
return _returnValue6;
}
};
class Boom {
// sitrep
fire() {
let a = 2;
console.log('a', a);
var _returnValue7 = a + 5;
console.log('Return Value:', _returnValue7);
return _returnValue7;
}
}
```

@@ -37,0 +129,0 @@

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