1'use strict';
2require('../common');
3
4// This test makes sure clearing timers with
5// 'null' or no input does not throw error
6clearInterval(null);
7clearInterval();
8clearTimeout(null);
9clearTimeout();
10clearImmediate(null);
11clearImmediate();
12