babel-plugin-range-operators

Foreach creates a range from start point to end point inclusive

Usage no npm install needed!

<script type="module">
  import babelPluginRangeOperators from 'https://cdn.skypack.dev/babel-plugin-range-operators';
</script>

README

Babel Plugin Range Operators

Foreach creates a range from start point to end point inclusive

Installation

npm install babel-plugin-range-operators --dev

Input

'[0...10]'.forEach((index) => {
  console.log(index)
})

Output

[0,1,2,3,4,5,6,7,8,9,10].forEach((index) => {
  console.log(index)
})

Uses

{
  "plugins": ["range-operators"]
}