Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
mnemonic-number-kr
Advanced tools
숫자를 외우기 쉬운 한국어 단어로 변환, Converts numbers to predefined list of Korean words
숫자를 외우기 쉬운 한국어 단어로 변환, Converts numbers to predefined list of Korean words
npm install mnemonic-number-kr
let mnum_basic = new MnemonicNumberKr();
mnum_basic.on('load', () => {
console.log(mnum_basic.fromInteger(0)); // [ '하나', '하나' ]
console.log(mnum_basic.fromInteger(1)); // [ '둘', '하나' ]
});
배열은 기본적으로 가나다순으로 정렬이 되있기에, 이를 무시하기 위해 배열을 섞는 방법
seed
에 관한 자세한 내용은 https://github.com/webcaetano/shuffle-seed 참고
let mnum_shuffled = new MnemonicNumberKr({
shuffle: 'Any shuffle seed' // 아무 문자열이나 가능
});
mnum_shuffled.on('load', () => {
console.log(mnum_shuffled.fromInteger(0)); // [ '둘', '둘' ]
console.log(mnum_shuffled.fromInteger(1)); // [ '하나', '둘' ]
});
출력 포멧에 따라서 단어를 어떤식으로 사용할지 결정합니다. 예를 들면 [word]
일 경우 한 단어만을 사용하게되어 35,304개의 경우의 수 밖에 없지만, [word]-[word]
와 같이 두 개의 단어를 사용하게되면 총 1,246,372,416개의 표현이 가능해집니다.
let mnum_single_word = new MnemonicNumberKr({
dictionaries: [ 'test.txt' ]
});
mnum_single_word.on('load', () => {
console.log(mnum_single_word.combinations); // 3
console.log(mnum_single_word.fromInteger(0)); // [ '하나' ]
});
let mnum_double_word = new MnemonicNumberKr({
dictionaries: [ 'test.txt', 'test.txt' ]
});
mnum_double_word.on('load', () => {
console.log(mnum_double_word.combinations) // 9 = 3*3
console.log(mnum_double_word.fromInteger(0)); // [ '하나', '하나' ]
});
예상된 경우의 수보다 더 큰 숫자를 변환할 경우, 다시 복구할때 데이터 손실이 일어날 수 있습니다. If you use larger number than the available combinations, you will lose the actual number data.
let mnum = new MnemonicNumberKr({
dictionaries: [ 'test.txt' ]
});
mnum.on('load', () => {
console.log(mnum.combinations); // 3 (test.txt)
for(let i=0; i<6; i++) {
let words = mnum.fromInteger(i);
console.log(i, words, mnum.toInteger(words))
}
// result:
// 0 [ '둘', '둘' ] 0
// 1 [ '하나', '둘' ] 1
// 2 [ '둘', '하나' ] 2
// 3 [ '하나', '하나' ] 3
// 4 [ '둘', '둘' ] 0
// 5 [ '하나', '둘' ] 1
});
FAQs
숫자를 외우기 쉬운 한국어 단어로 변환, Converts numbers to predefined list of Korean words
The npm package mnemonic-number-kr receives a total of 2 weekly downloads. As such, mnemonic-number-kr popularity was classified as not popular.
We found that mnemonic-number-kr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.