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

add-variable-declarations

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

add-variable-declarations

Add variable declarations for global assignments.

  • 6.0.27
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
increased by3.19%
Maintainers
1
Weekly downloads
 
Created
Source

add-variable-declarations

Add variable declarations for implicit global variable assignments.

Install

# via yarn
$ yarn add add-variable-declarations
# via npm
$ npm install add-variable-declarations

Usage

import { addVariableDeclarations } from 'add-variable-declarations';

const source = `
PI = 3.14;
radius = 8;
circumference = 2 * PI * radius;
`;

console.log(addVariableDeclarations(source).code);
// var PI = 3.14;
// var radius = 8;
// var circumference = 2 * PI * radius;

Development

  1. Clone the repository.

    https://github.com/eventualbuddha/add-variable-declarations.git

  2. Install dependencies.

    yarn install

  3. Make edits and re-build.

    yarn run build

  4. Or, to watch and build files as you edit.

    yarn run build -- --watch

  5. Run tests to ensure everything works.

    yarn test

FAQ

Why?

This project is used by decaffeinate to add variable declarations to converted CoffeeScript code. This project is not intended to allow you to write JavaScript without variable declarations, as I consider that a bad practice for the same reasons it's a bad practice in CoffeeScript.

Why var? Shouldn't this use let and const?

Yes, but not all situations allow the use of let and const, such as when the variable binding takes advantage of hoisting. If you want let and const you can use this library in combination with esnext which will turn all eligible var declarations into let or const as appropriate.

License

MIT

Keywords

FAQs

Package last updated on 29 Nov 2023

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