显示软件包…
2 个稳定版本
1.3.1 | 2021年2月21日 |
---|---|
1.2.0 | 2021年2月19日 |
#28 在 #tetsy
88KB
186 行
单词列表
Tetsy脑钱包单词列表库
RUST
# Cargo.toml
[dependencies]
tetsy-wordlist = "1.3"
// main.rs
println!("Words: {}", tetsy_wordlist::random_phrase(12));
let phrase = "violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead";
println!("Valid: {:?}", tetsy_wordlist::validate_phrase(phrase, 12));
JavaScript
$ npm i tetsy-wordlist --save
// main.js
import { randomPhrase, verifyPhrase } from 'tetsy-wordlist'
console.log(randomPhrase(12))
// This will throw if the phrase is not valid:
verifyPhrase("violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead", 12)
lib.rs
:
Tetsy脑钱包生成器。
依赖项
~530KB