แก้ 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,13 +1,13 @@
/**
* @return x value of a node
*/
export function x(d) {
export function x (d) {
return d.x;
}
/**
* @return y value of a node
*/
export function y(d) {
export function y (d) {
return d.y;
}