CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
tarray.js11 linesDownload Raw Back to test
1var TA = require('../');2var test = require('tape');3 4test('tiny u8a test', function (t) {5    var ua = new(TA.Uint8Array)(5);6    t.equal(ua.length, 5);7    ua[1] = 256 + 55;8    t.equal(ua[1], 55);9    t.end();10});11