
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
add-variable-declarations
Advanced tools
Add variable declarations for implicit global variable assignments.
# via yarn
$ yarn add add-variable-declarations
# via npm
$ npm install add-variable-declarations
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;
git@github.com:eventualbuddha/add-variable-declarations.git
yarn install
yarn run build
yarn run build -- --watch
yarn test
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.
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.
MIT
FAQs
Add variable declarations for global assignments.
The npm package add-variable-declarations receives a total of 10,924 weekly downloads. As such, add-variable-declarations popularity was classified as popular.
We found that add-variable-declarations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.