@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
28 lines (27 loc) • 865 B
JavaScript
export class Bookmark {
constructor(name, position) {
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "position", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
if (!Bookmark.BOOKMARKNAMEPATTERN.test(name)) {
throw new Error('Bookmark name is not valid: it can only contain alphanumeric characters and the dash (-) underscore (_) and space characters.');
}
this.name = name;
this.position = position;
}
}
Object.defineProperty(Bookmark, "BOOKMARKNAMEPATTERN", {
enumerable: true,
configurable: true,
writable: true,
value: /^[A-Za-zÀ-ž0-9_ -]+$/
});