1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/contrib/v8/jasmine/window.js

11 lines
214 B
JavaScript
Raw Normal View History

2010-06-02 16:10:24 +03:00
//needed to get around
(function(noop){
window = {
setInterval: noop,
clearInterval: noop,
setTimeout: function(callback, delay) {
callback()
},
2010-06-02 16:10:24 +03:00
clearTimeout: noop
}
})(function() {})