mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
11 lines
No EOL
214 B
JavaScript
11 lines
No EOL
214 B
JavaScript
//needed to get around
|
|
(function(noop){
|
|
window = {
|
|
setInterval: noop,
|
|
clearInterval: noop,
|
|
setTimeout: function(callback, delay) {
|
|
callback()
|
|
},
|
|
clearTimeout: noop
|
|
}
|
|
})(function() {}) |