=proto void duk_push_global_stash(duk_context *ctx); =stack [ ... ] -> [ ... stash! ] =summary
Push the global stash object to the stack. The global stash is an internal
object which can be used to store key/value pairs from C code so that they are
reachable for garbage collection, but are not accessible from Ecmascript code.
The stash is only accessible from C code with a ctx
argument
associated with the same global object.