UNPKG

modules-pack

Version:

JavaScript Modules for Modern Frontend & Backend Projects

13 lines (10 loc) 520 B
import { bench } from 'utils-pack' import { compareHash, generateHash } from './crypto' /** * BENCHMARK TESTS ============================================================= * ============================================================================= */ const message = 'God is here!' const hash = '$2a$10$QR08832.wyXXlDOLiUpxUOMFNdR7eRuBXIQvrMvJHAPIJpCHfa28e' bench({type: 'hash', log: '[0]', loop: 10}, generateHash, message, false) bench({type: 'hash', log: '[0]', loop: 10}, compareHash, message, hash, false)