I am a beginner in ES6 and I was checking out Babel 6. I imported Redux using the statement
import {createStore} from 'redux';
and later used it like this
const store = createStore(myReducer);
When I ran Babel with ES2015 plugin, it transformed the code to
var store = (0, _redux.createStore)(myReducer);
What does this (0, _redux.createStore)
mean ?