You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

babel-plugin-locals

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-locals

Python-style locals() in JavaScript

1.0.1
latest
Source
npmnpm
Version published
Weekly downloads
7
250%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-locals

Python locals() in JavaScript.

Example

Transforms

var x;
let y = 42;

function z() {}

locals;

to

var x;
let y = 42;

function z() {}

({
  x,
  y,
  z
});

This transformation has potential usages for meta programming(e.g. interpreting a function using a JavaScript interpreter requires explicit access to the local scope of the function).

Installation

$ npm install babel-plugin-locals

Usage

.babelrc

{
  "plugins": ["locals"]
}

Via CLI

$ babel --plugins locals script.js

Via Node API

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

Keywords

babel-plugin

FAQs

Package last updated on 02 Aug 2016

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