UNPKG

theendsoaper

Version:

Access Untill Tills with SOAP from Node.js and parse the results as objects, some extra useful functions in as well.

11 lines 304 B
module.exports = class PrintObject { static print(obj){ var string = ""; Object.keys(obj).forEach((key,index) => { if(obj[key].length !== undefined){ print(obj[key]); } console.log(key, " : ", obj[key]); }) } }