import Howl from"./../howlerjs/howler.core.js";let sounds={};export default{play:function(options){var path=options.path;let sound=sounds[path];sound||(options=options.volume||.3,sound=new Howl({src:[path],volume:options}),sounds[path]=sound),sound.play()}};