refactor: move all utility functions into the utils dir

This commit is contained in:
vsavkin
2016-05-24 13:57:51 -07:00
parent 013f9a2bbc
commit c9b4bcf689
9 changed files with 10 additions and 11 deletions

View File

@ -3,12 +3,12 @@ import { Location } from '@angular/common';
import { UrlSerializer } from './url_serializer';
import { RouterOutletMap } from './router_outlet_map';
import { recognize } from './recognize';
import { rootNode, TreeNode } from './tree';
import { rootNode, TreeNode } from './utils/tree';
import { UrlTree } from './url_tree';
import { createEmptyState, RouterState, ActivatedRoute, PRIMARY_OUTLET } from './router_state';
import { RouterConfig } from './config';
import { RouterOutlet } from './directives/router_outlet';
import { forEach } from './util';
import { forEach } from './utils/collection';
import { Subscription } from 'rxjs/Subscription';
/**