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

babel-plugin-default-identifier

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-default-identifier

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

0.0.3
latest
Source
npm
Version published
Weekly downloads
65
364.29%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

babel-plugin

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