Sistem-Pakar-Diagnosa-Penya.../backend/node_modules/@sendgrid/helpers/helpers/array-to-json.js

14 lines
294 B
JavaScript

'use strict';
/**
* Helper to convert an array of objects to JSON
*/
module.exports = function arrayToJSON(arr) {
return arr.map(item => {
if (typeof item === 'object' && item !== null && typeof item.toJSON === 'function') {
return item.toJSON();
}
return item;
});
};