npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

babel-plugin-transform-strong-mode

0.0.2

@gajus

npmHomeRepoSnykSocket
Downloads:5
$ npm install babel-plugin-transform-strong-mode
DailyWeeklyMonthlyYearly

babel-plugin-transform-strong-mode

NPM version Travis build status js-canonical-style

Places "use strong"; directive at the top of all files to enable strong mode.

Example

Converts:

foo();

To:

"use strong";

foo();

Usage

Add to .babelrc:

{
    "plugins": [
        [
            "transform-strong-mode"
        ]
    ]
}