HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/helder.komma.pro/node_modules/es5-ext/test/string/random.js
"use strict";

var isValidFormat = RegExp.prototype.test.bind(/^[a-z0-9]+$/);

module.exports = function (t, a) {
	a(typeof t(), "string");
	a.ok(t().length > 7);
	a.not(t({ isUnique: true }), t({ isUnique: true }));
	a.ok(isValidFormat(t()));
	a(t({ length: 1 }).length, 1);
	a(t({ length: 100 }).length, 100);
	a(t({ length: 0 }), "");
};