Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-hansen committed Jan 4, 2025
1 parent 4daced2 commit b113047
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/js-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3393,7 +3393,11 @@ extern "C" {
pub fn to_locale_time_string(this: &Date, locale: &str) -> JsString;

#[wasm_bindgen(method, js_name = toLocaleTimeString)]
pub fn to_locale_time_string_with_options(this: &Date, locale: &str, options: &JsValue) -> JsString;
pub fn to_locale_time_string_with_options(
this: &Date,
locale: &str,
options: &JsValue,
) -> JsString;

/// The `toString()` method returns a string representing
/// the specified Date object.
Expand Down

0 comments on commit b113047

Please sign in to comment.