stockx-api
Version:
communicate with the unofficial StockX API
17 lines (15 loc) • 444 B
JavaScript
const fs = require('fs');
module.exports = (body) => {
if (typeof body === 'object'){
body = JSON.stringify(body);
}
else if (typeof body !== 'string'){
body = body.toString();
}
fs.writeFile(__dirname + '/../../test/body.txt', body, function(err, data){
if (err){
return console.error('Failed to write body: ' + err);
}
else console.log('Wrote body to file');
});
}