🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

babel-plugin-default-identifier

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
b

babel-plugin-default-identifier

A Babel plugin to wrap the 'default' identifier with apostrophes

0.0.3
latest
68

Supply Chain Security

100

Vulnerability

79

Quality

76

Maintenance

100

License

Version published
Weekly downloads
15
-46.43%
Maintainers
1
Weekly downloads
 
Created
Issues
0

babel-plugin-default-identifier

A Babel plugin to wrap the "default" identifier with apostrophes

This plugin is useful for legacy browsers or tools that treat "default" identifier as a keyword

Example

Input src/simple/actual.js

var x = {
  default: 0
};

Output dist/simple/actual.js

'use strict';

var x = {
  'default': 0
};

Getting started

Installation

$ npm install babel-plugin-default-identifier

Usage

{
  "plugins": ["default-identifier"]
}

Running tests

Run mocha tests with npm test

License

MIT

FAQs

Package last updated on 27 Feb 2017

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