(mergein, mergeto)
| 905 | // Merge all other data-types except "function" |
| 906 | |
| 907 | function mergeProps(mergein, mergeto) { |
| 908 | for (var t in mergeto) { |
| 909 | if (typeof mergeto[t] !== 'function') { |
| 910 | mergein[t] = mergeto[t]; |
| 911 | } |
| 912 | } |
| 913 | return mergein; |
| 914 | } |
| 915 | |
| 916 | // "dropFirstFrame" has been added by Graham Roth |
| 917 | // https://github.com/gsroth |
no outgoing calls
no test coverage detected