mirror of
https://github.com/maputnik/editor.git
synced 2026-02-19 02:50:06 +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;
|
|
}
|