(s)
| 5606 | 14744: (s) => { |
| 5607 | 'use strict' |
| 5608 | var o = function isMergeableObject(s) { |
| 5609 | return ( |
| 5610 | (function isNonNullObject(s) { |
| 5611 | return !!s && 'object' == typeof s |
| 5612 | })(s) && |
| 5613 | !(function isSpecial(s) { |
| 5614 | var o = Object.prototype.toString.call(s) |
| 5615 | return ( |
| 5616 | '[object RegExp]' === o || |
| 5617 | '[object Date]' === o || |
| 5618 | (function isReactElement(s) { |
| 5619 | return s.$$typeof === i |
| 5620 | })(s) |
| 5621 | ) |
| 5622 | })(s) |
| 5623 | ) |
| 5624 | } |
| 5625 | var i = 'function' == typeof Symbol && Symbol.for ? Symbol.for('react.element') : 60103 |
| 5626 | function cloneUnlessOtherwiseSpecified(s, o) { |
| 5627 | return !1 !== o.clone && o.isMergeableObject(s) |
no outgoing calls
no test coverage detected