UNPKG

225 BJavaScriptView Raw
1'use strict';
2
3module.exports = function (t, a) {
4 a(t.length, 256, "Length");
5 t.forEach(function (data, index) {
6 a(((data >= 30) && (data <= 37)) || ((data >= 90) && (data <= 97)), true,
7 "In range #" + index);
8 });
9};