fix lint issue

This commit is contained in:
Amjad Masad
2016-03-16 20:06:09 -07:00
parent 3f4b88e638
commit bf600b0526

View File

@@ -37,7 +37,7 @@ export default function ({ types: t }) {
state.set(
"jsxIdentifier",
()=> id.split(".").map((name) => t.identifier(name)).reduce(
() => id.split(".").map((name) => t.identifier(name)).reduce(
(object, property) => t.memberExpression(object, property)
)
);