Skip to content

Commit 907423e

Browse files
authored
Time stamp issue
_time() was not returning the timeStamp as there was no return statement
1 parent 691828a commit 907423e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codebird.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
989989
}, {
990990
key: "_time",
991991
value: function _time() {
992-
Math.round(new Date().getTime() / 1000);
992+
return Math.round(new Date().getTime() / 1000);
993993
}
994994

995995
/**

0 commit comments

Comments
 (0)