0.0.3 • Published 7 years ago

babel-plugin-default-identifier v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

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

Via .babelrc (Recommended)

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

Running tests

Run mocha tests with npm test

License

MIT