Skip to content
Snippets Groups Projects
Commit e370d5bb authored by kopareigns's avatar kopareigns
Browse files

findNaN tweak

parent 920daab5
No related branches found
No related tags found
1 merge request!3436More work on datatype cleanup
......@@ -75,7 +75,7 @@ window.findNaN = function findNan() {
var result = [];
for (var key in flatV) {
if (Number.isNaN(flatV[key])) {
result.push('$'+key);
result.push('$$'+key); /* double dollar signs to escape sugarcube markup */
}
}
return result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment