done-autorender
Version:
Autorender CanJS projects
36 lines (32 loc) • 681 B
HTML
<html>
<head></head>
<body>
<script>
process = {
nextTick: function(fn){
setTimeout(fn, 0);
},
versions: {
electron: "1.0.0"
},
platform: "eletron",
env: {
NODE_ENV: "development"
}
};
global = window;
var oldToString = Object.prototype.toString;
Object.prototype.toString = function(){
// GROSS!
var stack = new Error().stack;
var isNPM = /npm/.test(stack);
if(this === process && !isNPM) {
return "[object process]";
}
return oldToString.apply(this, arguments);
};
</script>
<script src="../../node_modules/steal/steal.js"
data-main="test/electron/index.stache!done-autorender"></script>
</body>
</html>