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

Log all assignments and the return value of a function with a simple comment

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
75
decreased by-10.71%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-sitrep

Log all assignments and the return value of a function with a simple comment

Example

In

// sitrep
function bar () {
  var a = 'foo'
  const b = 'bar'
  let c = [a, b].map(x => x.charAt(0))
  return c.join('-')
}

Out

// sitrep
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;
}

Installation

npm install --save-dev babel-plugin-sitrep

Usage

.babelrc

Without options:

{
  "plugins": ["sitrep"]
}

Via CLI

babel --plugins sitrep script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["sitrep"]
});

FAQs

Package last updated on 12 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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