mirror of
https://github.com/LanceGin/jsotp.git
synced 2026-05-05 00:00:03 +08:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
/*
|
|
* @project : jsotp
|
|
* @author : Gin (gin.lance.inside@hotmail.com)
|
|
* @link : https://github.com/LanceGin/jsotp
|
|
* @Disc : a node module to generate and verify one-time passwords
|
|
*/
|
|
|
|
function jsotp(name) {
|
|
console.log(`Hello ${name}`);
|
|
}
|
|
|
|
exports.jsotp = jsotp |