UNPKG

@nestjs/throttler

Version:

A Rate-Limiting module for NestJS to work on Express, Fastify, Websockets, Socket.IO, and GraphQL, all rolled up into a simple package.

8 lines 266 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sha256 = sha256; const crypto = require("node:crypto"); function sha256(text) { return crypto.createHash('sha256').update(text).digest('hex'); } //# sourceMappingURL=hash.js.map