(value, transform)
| 755 | })()) |
| 756 | |
| 757 | function __guard__ (value, transform) { |
| 758 | return (typeof value !== 'undefined' && value !== null) ? transform(value) : undefined |
| 759 | } |
| 760 | function __guardMethod__ (obj, methodName, transform) { |
| 761 | if (typeof obj !== 'undefined' && obj !== null && typeof obj[methodName] === 'function') { |
| 762 | return transform(obj, methodName) |
no outgoing calls
no test coverage detected