แก้ coding style ภาค 2

This commit is contained in:
Pitchaya Boonsarngsuk
2018-03-22 16:12:25 +00:00
parent 2256af7448
commit 0cdd927444
12 changed files with 160 additions and 130 deletions

View File

@@ -1,8 +1,8 @@
/**
* @return a constant defined by x.
*/
export default function(x) {
return function() {
export default function (x) {
return function () {
return x;
};
}