Skip to content
This repository was archived by the owner on Jun 26, 2022. It is now read-only.

Commit 699287e

Browse files
committed
Merge pull request #5 from mikach/patch-1
Add missing methods
2 parents acffd8c + d60a5f4 commit 699287e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
var empty = {};
88
var dummy = function() {};
99
var properties = 'memory'.split(',');
10-
var methods = ('assert,count,debug,dir,dirxml,error,exception,group,' +
10+
var methods = ('assert,clear,count,debug,dir,dirxml,error,exception,group,' +
1111
'groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,' +
12-
'time,timeEnd,trace,warn').split(',');
12+
'table,time,timeEnd,timeStamp,trace,warn').split(',');
1313
while (prop = properties.pop()) con[prop] = con[prop] || empty;
1414
while (method = methods.pop()) con[method] = con[method] || dummy;
1515
})(this.console = this.console || {});

0 commit comments

Comments
 (0)