frontend/.pnpm-store/v3/files/34/82fcf952957e01caa8d5a8d2b9e74ba925b95fd5873c4d3fc01697d8054c213ce81e8a524f2ddecd2ab0d6b2745418f8998a180ee57dfa4ccd42f387bca30a

11 lines
200 B
Plaintext

"use strict";
module.exports = function (t, a) {
a(t(NaN), 0, "NaN");
a(t(-343), 0, "Negative");
a(t(232342), 232342, "Positive");
a.throws(function () {
t(1e23);
}, TypeError, "Too large");
};