-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
23 lines (21 loc) · 986 Bytes
/
index.js
File metadata and controls
23 lines (21 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @file Main module for the project.
* @description This module exports the main functionality of the project.
*/
// ━━ TYPE DEFINITIONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
/**
* Password manipulation tool. It provides functionality to generate strong
* passwords, check their strength, and perform other password-related
* operations.
*
* @class PasswordToolKit
* @classdesc Password class that allows generating and evaluating password
* strength.
*
* @version 2.0.0
* @author Victor Giovanni Beltrán Rodríguez
* @module PasswordToolKit
*/
const PasswordToolKit = require('./src');
// ━━ EXPORT MODULE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
module.exports = PasswordToolKit;