Skip to content

Commit a055fee

Browse files
dancaseyblakeembrey
authored andcommitted
Fix for lodash 4.x (#241)
lodash 4.x does not alias `_.unique -> uniq`. See #239.
1 parent 8cf0961 commit a055fee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/utils/options/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export class Options extends ChildableComponent<Application, OptionsComponent>
138138
}
139139
}
140140

141-
return _.unique(result);
141+
return _.uniq(result);
142142
}
143143

144144

0 commit comments

Comments
 (0)