UNPKG

199 BJavaScriptView Raw
1'use strict';
2
3module.exports = function (t, a) {
4 var re = /^[0-9a-f]{6}$/;
5
6 a(t.length, 256, "Length");
7 t.forEach(function (data, index) {
8 a(re.test(data), true, "In range #" + index);
9 });
10};