Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
es6-default-params
Advanced tools
Compiles JavaScript written using ES6 default function parameters to use ES5-compatible function syntax. For example, this:
function add(x=0, y=0) {
return x + y;
}
compiles to this:
function add() {
var x = (arguments[0] !== void 0 ? arguments[0] : 0);
var y = (arguments[1] !== void 0 ? arguments[1] : 0);
return x + y;
}
This project is part of esnext, a project to compile the syntax of the next version of JavaScript to today's JavaScript environments.
For more information about the proposed syntax, see the wiki page on default params.
$ npm install es6-default-params
$ node
> var es6defaultParams = require('es6-default-params')
> es6defaultParams.compile(codeWithDefaultParams)
{ "code": ..., "map": ... }
> es6defaultParams.transform(anAst)
anotherAst
Browserify support is built in.
$ npm install es6-default-params # install local dependency
$ browserify -t es6-default-params $file
First, install the development dependencies:
$ npm install
Then, try running the tests:
$ npm test
To run specific example files:
$ node test/runner test/examples/my-example.js test/examples/other-example.js
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Any contributors to the master es6-default-params repository must sign the Individual Contributor License Agreement (CLA). It's a short form that covers our bases and makes sure you're eligible to contribute.
When you have a change you'd like to see in the master repository, send a pull request. Before we merge your request, we'll make sure you're in the list of people who have signed a CLA.
FAQs
Function default parameters compiled to ES5.
We found that es6-default-params demonstrated a not healthy version release cadence and project activity because the last version was released 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.