@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
13 lines (12 loc) • 433 B
JavaScript
export class Bookmark {
static BOOKMARKNAMEPATTERN = /^[A-Za-zÀ-ž0-9_ -]+$/;
name;
position;
constructor(name, position) {
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;
}
}