stdweb-internal-runtime 0.1.5

Internal runtime for the `stdweb` crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
Module.STDWEB_PRIVATE.alloc = function alloc( size ) {
    return _malloc( size );
};

Module.STDWEB_PRIVATE.dyncall = function( signature, ptr, args ) {
    return dynCall( signature, ptr, args );
};

Module.STDWEB_PRIVATE.utf8_len = function utf8_len( str ) {
    return lengthBytesUTF8( str );
};