1.1.0 • Published 8 years ago
babel-plugin-precompile-charcodes v1.1.0
babel-plugin-precompile-charcodes

Convert character code getters into plain integers.
Install
With npm do:
npm install babel-plugin-precompile-charcodes --save-devExample
Convert str.charCodeAt(0) to a plain integer, useful for parsers/tokenizers.
Input
const at = '@'.charCodeAt(0);Output
const at = 64;Usage
In your Babel configuration:
{
"plugins": ["precompile-charcodes"]
}Contributors
Thanks goes to these wonderful people (emoji key):
| Ben Briggs💻 📖 👀 ⚠️ |
|---|
This project follows the all-contributors specification. Contributions of any kind welcome!
License
MIT © Ben Briggs