2018-08-10 14:13:57 -04:00

5 lines
80 B
JavaScript

exports.set_in_object = function(obj, name, value) {
obj[name] = value;
};