| 89 | _forEachName = (names, func) => ((names = names.split(",")).forEach(func)) || names, //split a comma-delimited list of names into an array, then run a forEach() function and return the split array (this is just a way to consolidate/shorten some code). |
| 90 | _round = value => Math.round(value * 100000) / 100000 || 0, |
| 91 | _roundPrecise = value => Math.round(value * 10000000) / 10000000 || 0, // increased precision mostly for timing values. |
| 92 | _parseRelative = (start, value) => { |
| 93 | let operator = value.charAt(0), |
| 94 | end = parseFloat(value.substr(2)); |
no outgoing calls
no test coverage detected
searching dependent graphs…