hidden()
更新日: 2018-09-04
hidden()
// 使い方
chance.cc_types()
chance.mersenne_twister()
chance.mersenne_twister(12345)
chance.months()
chance.name_prefixes()
chance.provinces()
chance.states()
chance.street_suffix()
chance.street_suffixes()
これらの関数は、隠されているわけではありませんが、 内部的に使用するためのユーティリティ関数です。 これらの関数がユーザーによって有用な場合、公開されることになります。
// ccタイプリストを返します。
chance.cc_types()
=> [{name: "American Express", short_name: 'amex', prefix: '34', length: 15}, ...]
// 新しいメルセンヌツイスタを返します。
chance.mersenne_twister()
=> [object Object] // メルセンヌツイスタのインスタンス
// メルセンヌツイスタのシードを指定します。
chance.mersenne_twister(12345)
=> [object Object] // シードを12345に指定したメルセンヌツイスタインスタンス
// デフォルトの「月」リストを返します。
chance.months();
=> [{name: 'January', short_name 'Jan', numeric: '01'}, ...]
// デフォルトの敬称(Dr.、Mr.等)リストを返します。
chance.name_prefixes();
=> [{name: 'Doctor', abbreviation: 'Dr.'}, {name: 'Miss', abbreviation: 'Miss'}, ...]
// カナダの州名リストを返します。
chance.provinces();
=> [{name: 'Alberta', abbreviation: 'AB'}, {name: 'British Columbia', abbreviation: 'BC'}, ...]
// アメリカの州名リストを返します。
chance.states();
=> [{name: 'Alabama', abbreviation: 'AL'}, {name: 'Alaska', abbreviation: 'AK'}, ...]
// 通りの接尾辞を返します。
chance.street_suffix();
=> {name: 'Street', abbreviation: 'St'}
// 通りの略称(Ave、St等)リストを返します。
chance.street_suffixes();
=> [{name: 'Avenue', abbreviation: 'Ave'}, {name: 'Boulevard', abbreviation: 'Blvd'}, ...]
© 2015 Victor Quinn Released under the MIT license
このコンテンツはVictor Quinn(victorquinn)によるChanceドキュメントを翻訳/改変したものです。