function isNumeric()

in functions/stream-logs/stream-logs.js [157:159]


function isNumeric(n) {
    return !isNaN(parseFloat(n)) && isFinite(n);
}