16 lines
344 B
TypeScript
16 lines
344 B
TypeScript
![]() |
// Under Lodash license (MIT/ISC) - https://raw.githubusercontent.com/lodash/lodash/4.17.10-npm/LICENSE
|
||
|
import * as _ from 'lodash'
|
||
|
|
||
|
export class UniqueIdMock {
|
||
|
idCounter:number=0
|
||
|
|
||
|
public uniqueId(prefix:string):string {
|
||
|
var id = ++this.idCounter;
|
||
|
return _.toString(prefix) + id;
|
||
|
}
|
||
|
|
||
|
public reset(){
|
||
|
this.idCounter = 0
|
||
|
}
|
||
|
|
||
|
}
|