let textBytes = ctypes.uint8_t("hello");
let a = new SECItem;
a.type = siBuffer;
a.data = textBytes.address();
a.len = textBytes.length;
初期化前に ReferenceError: can't access lexical declaration textBytes を受け取りました。
let textBytes = ctypes.uint8_t("hello");
let a = new SECItem;
a.type = siBuffer;
a.data = textBytes.address();
a.len = textBytes.length;
初期化前に ReferenceError: can't access lexical declaration textBytes を受け取りました。