(fn)
| 7711 | } |
| 7712 | |
| 7713 | function isPromisified(fn) { |
| 7714 | try { |
| 7715 | return fn.__isPromisified__ === true; |
| 7716 | } |
| 7717 | catch (e) { |
| 7718 | return false; |
| 7719 | } |
| 7720 | } |
| 7721 | |
| 7722 | function hasPromisified(obj, key, suffix) { |
| 7723 | var val = util.getDataPropertyOrDefault(obj, key + suffix, |
no outgoing calls
no test coverage detected