mini-v8 0.4.1

A minimal embedded V8 JavaScript engine wrapper for Rust
Documentation
1
2
3
4
5
6
7
use crate::mini_v8::MiniV8;

#[test]
fn to_string() {
    let mv8 = MiniV8::new();
    assert_eq!(mv8.create_string("abc😊🈹").to_string(), "abc😊🈹".to_string());
}