Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-runtime

Package Overview
Dependencies
70
Maintainers
4
Versions
131
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/plugin-transform-runtime

Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals


Version published
Weekly downloads
16M
increased by3.02%
Maintainers
4
Install size
5.98 MB
Created
Weekly downloads
 

Package description

What is @babel/plugin-transform-runtime?

The @babel/plugin-transform-runtime package is a Babel plugin that enables the re-use of Babel's injected helper code to save on codesize. It also allows you to use built-ins such as Promise or WeakMap, static methods like Array.from or Object.assign, instance methods like Array.prototype.includes, and generator functions in environments that do not natively support them.

What are @babel/plugin-transform-runtime's main functionalities?

Helpers

This feature allows Babel to transform code by extracting common helper functions into shared modules to reduce code duplication in the output.

"use strict";\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Foo = function Foo() {\n  _classCallCheck(this, Foo);\n};

Polyfills for instance methods

This feature enables the use of instance methods like 'includes' on arrays, which are part of the ECMAScript specifications but may not be available in all environments.

import \"core-js/stable\";\nimport \"regenerator-runtime/runtime\";\n\n[1, 2, 3].includes(2);

Built-ins

This feature allows the use of new built-in objects like Promise, which are part of the ECMAScript specifications but may not be natively supported in all environments.

import \"core-js/stable\";\nimport \"regenerator-runtime/runtime\";\n\nvar promise = new Promise();

Generator functions

This feature allows the use of generator functions, which can be used to perform asynchronous operations in a synchronous-like manner.

import \"core-js/stable\";\nimport \"regenerator-runtime/runtime\";\n\nfunction* aGenerator() {\n  yield 1;\n  yield 2;\n  yield 3;\n}

Other packages similar to @babel/plugin-transform-runtime

Changelog

Source

v7.19.6 (2022-10-20)

:eyeglasses: Spec Compliance
  • babel-plugin-proposal-decorators
    • #15059 Ensure non-static decorators are applied when a class is instantiated. (@JLHwung)
:bug: Bug Fix
  • babel-parser
  • babel-plugin-transform-runtime, babel-runtime-corejs2, babel-runtime-corejs3
    • #15060 Ensure @babel/runtime-corejs3/core-js/*.js can be imported on Node.js 17+ (@JLHwung)
  • babel-preset-env, babel-traverse
:nail_care: Polish
  • babel-generator, babel-plugin-transform-flow-comments
:memo: Documentation
  • babel-standalone
:house: Internal
:running_woman: Performance
  • babel-core, babel-standalone

Readme

Source

@babel/plugin-transform-runtime

Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals

See our website @babel/plugin-transform-runtime for more information.

Install

Using npm:

npm install --save-dev @babel/plugin-transform-runtime

or using yarn:

yarn add @babel/plugin-transform-runtime --dev

Keywords

FAQs

Last updated on 20 Oct 2022

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