diff options
Diffstat (limited to 'src/Color.js')
-rw-r--r-- | src/Color.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Color.js b/src/Color.js index de65750..ed3531c 100644 --- a/src/Color.js +++ b/src/Color.js @@ -1,5 +1,3 @@ -/* globals fullHex, compToHex */ - /* Color { @@ -29,8 +27,8 @@ SVG.hsl() SVG.lab('rgb(100, 100, 100)') */ -import {isHex, isRgb, whitespace, rgb, hex} from './regex.js' -import {fullHex, compToHex} from './helpers.js' +import { isHex, isRgb, whitespace, rgb, hex } from './regex.js' +import { fullHex, compToHex } from './helpers.js' export default class Color { constructor (...args) { |