rspack_napi 0.100.0-beta.9

rspack napi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use napi::JsString;

pub trait JsStringExt {
  fn into_string(self) -> String;
}

impl<'a> JsStringExt for JsString<'a> {
  fn into_string(self) -> String {
    self
      .into_utf8()
      .expect("Should into utf8")
      .into_owned()
      .expect("Should as_str")
  }
}