You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@babel/plugin-syntax-nullish-coalescing-operator

Package Overview
Dependencies
Maintainers
6
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-syntax-nullish-coalescing-operator

Allow parsing of the nullish-coalescing operator

7.8.3
latest
Source
npmnpm
Version published
Weekly downloads
32M
-5.89%
Maintainers
6
Weekly downloads
 
Created

What is @babel/plugin-syntax-nullish-coalescing-operator?

The @babel/plugin-syntax-nullish-coalescing-operator package allows Babel to parse code that uses the nullish coalescing operator (??). This operator is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand. This package does not transform the nullish coalescing syntax; it only enables Babel to understand it.

What are @babel/plugin-syntax-nullish-coalescing-operator's main functionalities?

Parsing nullish coalescing operator

This code demonstrates how the nullish coalescing operator is used to provide a default value ('default string') in case the left-hand operand (foo) is null or undefined.

const foo = null ?? 'default string';

Other packages similar to @babel/plugin-syntax-nullish-coalescing-operator

Keywords

babel-plugin

FAQs

Package last updated on 13 Jan 2020

Did you know?

Socket

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