(fn)
| 9093 | var kernelRunShortcut = require('../kernel-run-shortcut'); |
| 9094 | |
| 9095 | function removeFnNoise(fn) { |
| 9096 | if (/^function /.test(fn)) { |
| 9097 | fn = fn.substring(9); |
| 9098 | } |
| 9099 | return fn.replace(/[_]typeof/g, 'typeof'); |
| 9100 | } |
| 9101 | |
| 9102 | function removeNoise(str) { |
| 9103 | return str.replace(/[_]typeof/g, 'typeof'); |