Skip to content

Commit c1cd693

Browse files
author
Ivan Demidov
committedFeb 1, 2016
Fixed #10, Wrong loop syntax
1 parent 3a15899 commit c1cd693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/index.es6.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const maps = {};
88
function resolveValue(value) {
99
const start = value.indexOf(`${VAR_FUNC_IDENTIFIER}(`);
1010
if (start === -1) {
11-
return [value];
11+
return value;
1212
}
1313

1414
value.match(/var\(\S*\)/g).map(match => {

0 commit comments

Comments
 (0)