1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Coding style cleanup

This commit is contained in:
Jermolene 2014-12-02 15:32:52 +00:00
parent 136c00237e
commit e11c9e83b9

View File

@ -63,7 +63,6 @@ Iterate through all the own properties of an object or array. Callback is invoke
*/
$tw.utils.each = function(object,callback) {
var next,f;
if(object) {
if(Object.prototype.toString.call(object) == "[object Array]") {
for (f=0; f<object.length; f++) {