mirror of
https://github.com/jambonz/jambonz-api-server.git
synced 2025-12-19 05:47:46 +00:00
7 lines
105 B
JavaScript
7 lines
105 B
JavaScript
module.exports = function(tuples) {
|
|
return tuples.map((t) => {
|
|
delete t.id;
|
|
return t;
|
|
});
|
|
};
|