Documentation
  • Coverage
  • 37.5%
    3 out of 8 items documented3 out of 3 items with examples
  • Size
  • Source code size: 4.22 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 276.7 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • hotdogking2007/likejs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • hotdogking2007

JavaScript syntax implementation library

likejs::var!(var str_text = "Hello, World!".to_string());

let f = likejs::arrow!(() => {"Hello, World!".to_string()});
let f = likejs::arrow!(() => "Hello, World!".to_string());
likejs::normal_function!(function add(a, b){
   a+b
});
let int = add(12,13);