Skip to main content

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

note

Syntax only

It's unlikely you want to use this plugin directly as it only enables Babel to parse this syntax. Instead, use plugin-transform-nullish-coalescing-operator to both parse and transform this syntax.

Installation

npm install --save-dev @babel/plugin-syntax-nullish-coalescing-operator

Usage

babel.config.json
{
"plugins": ["@babel/plugin-syntax-nullish-coalescing-operator"]
}

Via CLI

Shell
babel --plugins @babel/plugin-syntax-nullish-coalescing-operator script.js

Via Node API

JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-syntax-nullish-coalescing-operator"]
});