* Retrieve 'left', 'right', 'top', 'bottom', 'width', 'height' from object. * @param {Object} source * @return {Object} Result contains those props.
(target, source)
| 17094 | */ |
| 17095 | |
| 17096 | function copyLayoutParams(target, source) { |
| 17097 | source && target && each$1(LOCATION_PARAMS, function (name) { |
| 17098 | source.hasOwnProperty(name) && (target[name] = source[name]); |
| 17099 | }); |
| 17100 | return target; |
| 17101 | } |
| 17102 | |
| 17103 | var inner = makeInner(); |
| 17104 |
no outgoing calls
no test coverage detected
searching dependent graphs…