mirror of
				https://github.com/skishore/makemeahanzi.git
				synced 2025-10-31 02:45:49 +08:00 
			
		
		
		
	babel-plugin-syntax-exponentiation-operator
Allow parsing of the exponentiation operator.
Installation
$ npm install babel-plugin-syntax-exponentiation-operator
Usage
Via .babelrc (Recommended)
.babelrc
{
  "plugins": ["syntax-exponentiation-operator"]
}
Via CLI
$ babel --plugins syntax-exponentiation-operator script.js
Via Node API
require("babel-core").transform("code", {
  plugins: ["syntax-exponentiation-operator"]
});
