fix: change export from commonjs to es module for import from src usage.

This commit is contained in:
LeuisKen
2018-11-12 12:52:30 +08:00
committed by Zeno Rocha
parent 132fcd16b1
commit 5de8be447f
2 changed files with 2 additions and 2 deletions

View File

@@ -201,4 +201,4 @@ class ClipboardAction {
} }
} }
module.exports = ClipboardAction; export default ClipboardAction;

View File

@@ -132,4 +132,4 @@ function getAttributeValue(suffix, element) {
return element.getAttribute(attribute); return element.getAttribute(attribute);
} }
module.exports = Clipboard; export default Clipboard;