1
2
3
4
5
6
7
#![no_std]

pub type JSValue = f64;

pub const UNDEFINED: JSValue = 0.0;
pub const FALSE: JSValue = 0.0;
pub const TRUE: JSValue = 1.0;