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