_assert.js 548 B

123456789101112131415
  1. /**
  2. * Internal assertion helpers.
  3. * @module
  4. * @deprecated
  5. */
  6. import { abytes as ab, aexists as ae, anumber as an, aoutput as ao, } from "./utils.js";
  7. /** @deprecated Use import from `noble/hashes/utils` module */
  8. export const abytes = ab;
  9. /** @deprecated Use import from `noble/hashes/utils` module */
  10. export const aexists = ae;
  11. /** @deprecated Use import from `noble/hashes/utils` module */
  12. export const anumber = an;
  13. /** @deprecated Use import from `noble/hashes/utils` module */
  14. export const aoutput = ao;
  15. //# sourceMappingURL=_assert.js.map