| 1234567891011121314151617181920212223242526 | const SplittableRandom = Java.type('java.util.SplittableRandom');const random = new SplittableRandom();module.exports = {  randomWorld: () => {    return 1 + random.nextInt(10000)  },  /**   * Returns the value of the "queries" getRequest parameter, which is an integer   * bound between 1 and 500 with a default value of 1.   *   * @param request the current HTTP request   * @return the value of the "queries" parameter   */  getQueries: (request) => {    let param = request.getParam("queries");    if (param == null) {      return 1;    }    // invalid params are converted to 1    return Math.min(500, parseInt(param, 10) || 1);  }};
 |