mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2026-03-13 08:51:02 +08:00
Code style fixes.
This commit is contained in:
@@ -2,8 +2,8 @@ import Comparator from '../../utils/comparator/Comparator';
|
||||
|
||||
export default class BinaryTreeNode {
|
||||
/**
|
||||
* @param {*} value
|
||||
* @param {BinaryTreeNode} parent
|
||||
* @param {*} [value]
|
||||
* @param {BinaryTreeNode} [parent]
|
||||
*/
|
||||
constructor(value = null, parent = null) {
|
||||
this.left = null;
|
||||
|
||||
Reference in New Issue
Block a user