| 536 | } |
| 537 | |
| 538 | export const normalizeSpacesInString = string => { |
| 539 | return string.replace(/\s+/g, ' ') |
| 540 | } |
| 541 | |
| 542 | export const humanizeFunction = function (fn) { |
| 543 | const fnStr = fn.toString().trim() |
no outgoing calls
no test coverage detected
searching dependent graphs…