28 lines
527 B
JavaScript
28 lines
527 B
JavaScript
/**
|
|
* Utility functions for parsing
|
|
*/
|
|
|
|
/**
|
|
* Parse a string as positive integer or NaN
|
|
*
|
|
* @param {string} value
|
|
*/
|
|
function strictParseInt(value) {
|
|
if (/^([1-9][0-9]*)$/.test(value))
|
|
return Number(value);
|
|
return NaN;
|
|
}
|
|
|
|
|
|
function parseBuildingURL(url){
|
|
const re = /^\/building\/([^\/]+)(\/edit)?.html$/;
|
|
const matches = re.exec(url);
|
|
|
|
if (matches && matches.length >= 2) {
|
|
return strictParseInt(matches[1])
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
export { strictParseInt, parseBuildingURL };
|