mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 11:08:35 +00:00
14 lines
319 B
JavaScript
Vendored
14 lines
319 B
JavaScript
Vendored
"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(), t());
|
|
a.ok(isValidFormat(t()));
|
|
a.ok(isValidFormat(t()));
|
|
a.ok(isValidFormat(t()));
|
|
a.ok(isValidFormat(t()));
|
|
a.ok(isValidFormat(t()));
|
|
};
|