From 318489a74cb96697876384335b632ae62fda3aeb Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Fri, 20 Dec 2019 15:29:56 -0800 Subject: [PATCH] We are Webamp not Winamp --- js/webamp.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/webamp.js b/js/webamp.js index 0bc173d4..6a7be9a5 100644 --- a/js/webamp.js +++ b/js/webamp.js @@ -2,7 +2,7 @@ import JSZip from "jszip"; import * as musicMetadataBrowser from "music-metadata-browser"; import WebampLazy from "./webampLazy"; -class Winamp extends WebampLazy { +export default class Webamp extends WebampLazy { constructor(options) { super({ ...options, @@ -11,5 +11,3 @@ class Winamp extends WebampLazy { }); } } - -export default Winamp;