Sha256: 5f82db2f528f7e2f3d9397acd79aa99ba7456efc4610d746a2aa59a534b85219
Contents?: true
Size: 341 Bytes
Versions: 47
Compression:
Stored size: 341 Bytes
Contents
"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 }), ""); };
Version data entries
47 entries across 47 versions & 3 rubygems