mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-04 11:43:02 +00:00
9 lines
253 B
Plaintext
9 lines
253 B
Plaintext
/* @flow */
|
|
|
|
import formatTreeNode from './formatTreeNode';
|
|
import type { Options } from './../options';
|
|
import type { TreeNode } from './../tree';
|
|
|
|
export default (node: TreeNode, options: Options): string =>
|
|
formatTreeNode(node, false, 0, options);
|