release: WRNexusJS 0.7.0

This commit is contained in:
2026-08-01 10:04:42 +05:30
parent c54144f2e4
commit 87507edf59
207 changed files with 12607 additions and 679 deletions
+18
View File
@@ -0,0 +1,18 @@
export { SecurityError } from "./errors.ts";
export { assertSafeObject, isDangerousObjectKey, safeMerge } from "./object.ts";
export type { SafeObjectOptions } from "./object.ts";
export { isSafeUrl, sanitizeUrl, validateUrl } from "./url.ts";
export type { SafeUrlPolicy } from "./url.ts";
export { secureJsonStringify, serializeForHtml } from "./serialization.ts";
export type { SecureSerializeOptions } from "./serialization.ts";
export { secureCookieOptions, setSecureCookie } from "./cookies.ts";
export type { SecureCookieOptions } from "./cookies.ts";
export { requestHardening } from "./request.ts";
export type { RequestHardeningOptions } from "./request.ts";
export { safeFetch, isPrivateAddress } from "./fetch.ts";
export type { SafeFetchOptions } from "./fetch.ts";
export { securityPreset } from "./presets.ts";
export type { SecurityPreset } from "./presets.ts";
export { createTrustedHtml, isTrustedHtml, unwrapTrustedHtml } from "./trusted-html.ts";
export type { TrustedHtmlPolicy, TrustedHtmlValue } from "./trusted-html.ts";