nanvm-lib 0.1.1

NaNVM library
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, PartialEq)]
pub enum Type {
    Number = 0,
    Bool = 1,
    String = 2,
    Null = 3,
    Object = 4,
    Array = 5,
    Bigint = 6,
}