Socket
Socket
Sign inDemoInstall

babel-plugin-minify-builtins

Package Overview
Dependencies
0
Maintainers
7
Versions
81
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-minify-builtins

Minify Standard built-in Objects


Version published
Weekly downloads
430K
increased by3.42%
Maintainers
7
Install size
14.6 kB
Created
Weekly downloads
 

Readme

Source

babel-plugin-minify-builtins

Minify Standard built-in Objects

Example

In

Math.floor(a) + Math.floor(b)

Out

var _Mathfloor = Math.floor;

_Mathfloor(a) + _Mathfloor(b);

Installation

npm install babel-plugin-minify-builtins --save-dev

Usage

.babelrc

{
  "plugins": ["minify-builtins"]
}

Via CLI

babel --plugins minify-builtins script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["minify-builtins"]
});

Options

  • tdz - Account for TDZ (Temporal Dead Zone)

Keywords

FAQs

Last updated on 24 Sep 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc