1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-22 22:10:03 +00:00

pushTop should return resulting array

This commit is contained in:
Jermolene 2014-10-09 17:28:39 +01:00
parent 5010859ed6
commit 612e05a247

View File

@ -87,6 +87,7 @@ exports.pushTop = function(array,value) {
}
array.push(value);
}
return array;
};
/*