"use strict"; const Promise = require("bluebird"); const getBarcode = require("./get-barcode"); Promise.try(() => { return getBarcode("4002846034450"); }).then((result) => { console.log(result); })