Problem I am having is that when Yarn/NPM generate the code I see function binding changes. I have not seen anywhere on the style of binding
I have tried to check but could not find any documentation on it.
Here is a function defined in one of the files in the project directory named model.js
export function buildModel(modelType, numTimeSteps, numFeatures) {..}
It is very clear this function takes in 3 parameters. Now when I do a Yarn Build, this combines/rearranges all the js files & now when I look at the function it shows up like this
const model = (0, _models.buildModel)(modelType, steps, numFeatures);
I do not understand this syntax style
Need details or resource link to understand this generated code style.