mirror of
https://github.com/maputnik/editor.git
synced 2025-12-27 00:20:00 +00:00
10 lines
132 B
JavaScript
10 lines
132 B
JavaScript
/**
|
|
* A unique id for the current document.
|
|
*/
|
|
let REF = 0;
|
|
|
|
export default function(prefix="") {
|
|
REF++;
|
|
return prefix+REF;
|
|
}
|