@netlify/plugin-nextjs
Version:
Run Next.js seamlessly on Netlify
15 lines (10 loc) • 448 B
text/typescript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.
import { notImplemented } from "../_utils.ts";
export { timingSafeEqual } from "./_timingSafeEqual.ts";
export function getFipsCrypto(): boolean {
notImplemented("crypto.getFipsCrypto");
}
export function setFipsCrypto(_fips: boolean) {
notImplemented("crypto.setFipsCrypto");
}