[change] use ES2015 modules

Ref #102
This commit is contained in:
Nicolas Gallagher
2017-06-10 13:51:53 -07:00
parent 060d96b42d
commit 43d297bf59
101 changed files with 208 additions and 238 deletions

View File

@@ -22,4 +22,4 @@ const processColor = (color, opacity = 1) => {
return `rgba(${r},${g},${b},${a * opacity})`;
};
module.exports = processColor;
export default processColor;