RAHHH
This commit is contained in:
10
backend/frontend/node_modules/tcomb/lib/assign.js
generated
vendored
Normal file
10
backend/frontend/node_modules/tcomb/lib/assign.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
function assign(x, y) {
|
||||
for (var k in y) {
|
||||
if (y.hasOwnProperty(k)) {
|
||||
x[k] = y[k];
|
||||
}
|
||||
}
|
||||
return x;
|
||||
}
|
||||
|
||||
module.exports = assign;
|
||||
Reference in New Issue
Block a user