@rr0/cms
Version:
RR0 Content Management System (CMS)
19 lines (18 loc) • 360 B
JavaScript
/**
* Count sources in the whole website.
*/
export class SourceSiteCounter {
constructor() {
/**
* Source counter in the scope of the current page/context.
*/
this.number = 1;
}
get value() {
return "s" + this.number;
}
next(_context) {
this.number++;
return this.value;
}
}