babel-plugin-transform-strong-mode
January 3, 2016 ยท View on GitHub
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"
]
]
}