projecte_ionic/node_modules/browserstack/lib/extend.js
2022-02-09 18:30:03 +01:00

7 lines
87 B
JavaScript
Executable file

module.exports = function(a, b) {
for (var p in b) {
a[p] = b[p];
}
return a;
};