Update README.md: A semicolon is required after a class property.

This commit is contained in:
Vasiliy Shilov
2017-08-16 16:18:39 +03:00
parent 4ca686b7be
commit bd569433c4

View File

@@ -12,13 +12,13 @@ Below is a class with four class properties which will be transformed.
instanceProperty = "bork";
boundFunction = () => {
return this.instanceProperty;
}
};
//Static class properties
static staticProperty = "babelIsCool";
static staticFunction = function() {
return Bork.staticProperty;
}
};
}
let myBork = new Bork;