function isneg25519()

in src/ristretto255.js [357:361]


function isneg25519(f) {
  const s = new Uint8Array(32);
  lowlevel.pack25519(s, f);
  return s[0] & 1;
}