Serializes and deserializes a URL string into a URL tree.
API
abstract class UrlSerializer {
abstract parse(url: string): UrlTree;
abstract serialize(tree: UrlTree): string;
}
Description
Serializes and deserializes a URL string into a URL tree.
The url serialization strategy is customizable. You can make all URLs case insensitive by providing a custom UrlSerializer.
See DefaultUrlSerializer for an example of a URL serializer.