Skip to content
#

es5

Here are 404 public repositories matching this topic...

dhruvdutt
dhruvdutt commented Apr 9, 2018

Currently, we have support for transforming static Methods on prototype from

Controller.staticMethod = function(param) {
	var bar = "webpack-cli";
};

to

static staticMethod(param) {
	var bar = "webpack-cli";
}

But, we don't have support for transforming object expressions like this:

Controller.optionsObject = {
  bar: "webpack-cli"
};

We need

Improve this page

Add a description, image, and links to the es5 topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the es5 topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.