mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Fix uniqueId prefix coercion (#4619)
This commit is contained in:
committed by
Michał Lipiński
parent
04ebca6c86
commit
3f585df05c
@@ -27,7 +27,7 @@ function uniqueId(prefix='$lodash$') {
|
||||
return `${id}`
|
||||
}
|
||||
|
||||
return `${prefix + id}`
|
||||
return `${prefix}${id}`
|
||||
}
|
||||
|
||||
export default uniqueId
|
||||
|
||||
Reference in New Issue
Block a user