Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
url.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32open Js_of_ocaml let percent_encode (s: string): string = let open Js in (* We can safely ignore the exception encodeURI throws for invalid input because Js.string always produces valid UTF-16. *) s |> string |> encodeURI |> to_string let percent_decode (s: string): string option = let open Js in try s |> string |> decodeURI |> to_string |> Option.some with | _ -> None let percent_encode_component (s: string): string = let open Js in (* We can safely ignore the exception encodeURIComponent throws for invalid input because Js.string always produces valid UTF-16. *) s |> string |> encodeURIComponent |> to_string let percent_decode_component (s: string): string option = let open Js in try s |> string |> decodeURIComponent |> to_string |> Option.some with | _ -> None let current (): string = let open Js in to_string Dom_html.window##.location##.href