Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 257 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 257 Bytes

plugin-audio

An audio plugin for systemjs loader

Installation

jspm install audio

Usage

Async

System.import('./beep.mp3!audio').then(function(beep) {
  beep.play();
});

Or Sync

import beep from './beep.mp3!audio';

beep.play();