UNPKG

ts-gimei

Version:

日本語の人物名や住所のテストデータを、漢字・ひらがな・カタカナ・ローマ字で出力します

16 lines (15 loc) 488 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const index_1 = require("./index"); // 男女含めランダム const manOrWoman = index_1.gimei.person(); // 男性ランダム const man = index_1.gimei.person({ gender: 'male' }); // 女性ランダム const woman = index_1.gimei.person({ gender: 'female' }); // 住所ランダム const address = index_1.gimei.address(); console.log(manOrWoman); console.log(man); console.log(woman); console.log(address);