UNPKG

mws-sdk-async

Version:

A simple class based approach to work with Amazon's Merchant Web Services APIs.

18 lines (14 loc) 249 B
'use strict'; module.exports = response => { let json = {}; try { let { GetServiceStatusResult: { Status, Timestamp } } = response; json = { Status, Timestamp } } catch (e) { console.log(e); } return json; }