whalesong/js-assembler/runtime-src/baselib.js

6 lines
145 B
JavaScript

// Skeleton for basic library functions
if (! this['plt']) { this['plt'] = {}; }
(function (scope) {
scope['baselib'] = {};
})(this['plt']);