Socket
Socket
Sign inDemoInstall

@babel/plugin-proposal-optional-chaining

Package Overview
Dependencies
56
Maintainers
4
Versions
70
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/plugin-proposal-optional-chaining

Transform optional chaining operators into a series of nil checks


Version published
Weekly downloads
14M
increased by2.87%
Maintainers
4
Install size
1.18 MB
Created
Weekly downloads
 

Package description

What is @babel/plugin-proposal-optional-chaining?

The @babel/plugin-proposal-optional-chaining package is a Babel plugin that allows developers to use the optional chaining syntax in JavaScript. Optional chaining enables developers to read the value of a property located deep within a chain of connected objects without having to check that each reference in the chain is valid.

What are @babel/plugin-proposal-optional-chaining's main functionalities?

Optional Property Access

Safely access a property on an object. If 'obj' is null or undefined, 'value' will be undefined instead of throwing an error.

const value = obj?.prop;

Optional Method Calls

Safely call a method on an object. If 'obj' or 'obj.method' is null or undefined, 'result' will be undefined instead of throwing an error.

const result = obj?.method?.();

Optional Element Access

Safely access an array element. If 'arr' is null or undefined, 'item' will be undefined instead of throwing an error.

const item = arr?.[index];

Other packages similar to @babel/plugin-proposal-optional-chaining

Changelog

Source

v7.18.9 (2022-07-18)

:bug: Bug Fix
  • babel-plugin-transform-modules-systemjs, babel-types
    • #14763 fix: allow exporting TSDeclareFunction as default (@zxbodya)
  • babel-generator
:nail_care: Polish
:house: Internal
  • babel-core, babel-helper-remap-async-to-generator, babel-helpers, babel-parser, babel-plugin-transform-block-scoping, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-helper-remap-async-to-generator, babel-helper-replace-supers, babel-helper-wrap-function, babel-helpers, babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining, babel-plugin-proposal-decorators, babel-plugin-proposal-object-rest-spread, babel-plugin-proposal-optional-chaining, babel-plugin-transform-block-scoping, babel-plugin-transform-classes, babel-traverse, babel-types
:running_woman: Performance

Readme

Source

@babel/plugin-proposal-optional-chaining

Transform optional chaining operators into a series of nil checks

See our website @babel/plugin-proposal-optional-chaining for more information.

Install

Using npm:

npm install --save-dev @babel/plugin-proposal-optional-chaining

or using yarn:

yarn add @babel/plugin-proposal-optional-chaining --dev

Keywords

FAQs

Last updated on 18 Jul 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