MCPcopy Create free account
hub / github.com/Wscats/chrome-devtools-cli / mergeProps

Function mergeProps

src/__tests__/MediaStreamRecorder.js:907–914  ·  view source on GitHub ↗
(mergein, mergeto)

Source from the content-addressed store, hash-verified

905// Merge all other data-types except "function"
906
907function 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

Callers 1

MediaStreamRecorderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected