Util.js 134 B

123456
  1. module.exports = {
  2. getTestString( prefix = '' ) {
  3. return prefix + Math.random().toString() + '-Iñtërnâtiônàlizætiøn';
  4. }
  5. };