By including this in lib/utils/url-utils.js, we end up including it in the Webpack bundles for web and landing. This bloats bundle size, and is also a problem because url-parse-lax only works in the Node.js environment and Webpack 5 prints a warning about that.
Our only usage of the normalizeURL function is from Markdown linking code in native, so this diff moves that usage to native so we don't include normalizeURL or url-parse-lax in our Webpack bundles.
Depends on D6697