| 89 | } |
| 90 | |
| 91 | interface functions { |
| 92 | // EMBEDDED GENERATORS |
| 93 | country(): string; // 'United Kingdom' |
| 94 | city(): string; // 'New Ortiz chester' |
| 95 | street(): string; // 'Jadyn Islands' |
| 96 | address(): string; // '6390 Tremblay Pines Suite 784' |
| 97 | address1(): string; // '8417 Veda Circles' |
| 98 | address2(): string; // 'Suite 648' |
| 99 | state(): string; // 'Michigan' |
| 100 | state_abbr(): string; // 'CO' |
| 101 | latitude(): string; // 90.0610 |
| 102 | longitude(): string; // 180.0778 |
| 103 | building_number(): string; // 2413 |
| 104 | |
| 105 | // Text |
| 106 | |
| 107 | sentence(): string; // 'Laborum eius porro consequatur.' |
| 108 | title(): string; // 'Systematic nobis' |
| 109 | text(): string; // 'Nemo tempore natus non accusamus eos placeat esciunt. et fugit ut odio nisi dolore non ... (long text)' |
| 110 | description(): string; // 'Vel et rerum nostrum quia. Dolorum fuga nobis sit atus consequatur.' |
| 111 | short_description(): string; // 'Qui iste similique iusto.' |
| 112 | string(): string; // 'saepe quia molestias voluptates et' |
| 113 | word(): string; // 'voluptatem' |
| 114 | letter(): string; // 'k' |
| 115 | |
| 116 | // Internet |
| 117 | ip(): string; // '21.44.122.149' |
| 118 | domain(): string; // 'darrion.us' |
| 119 | url(): string; // 'germaine.net' |
| 120 | email(): string; // 'Josue.Hessel@claire.us' |
| 121 | user_agent(): string; // 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv():34.0) Gecko/20100101 Firefox/34.0' |
| 122 | |
| 123 | // Person |
| 124 | |
| 125 | name(): string; // 'Alberto' |
| 126 | username(): string; // 'Darryl' |
| 127 | first_name(): string; // 'Derek' |
| 128 | last_name(): string; // 'Considine' |
| 129 | full_name(): string; // 'Kadin Torphy' |
| 130 | password(): string; // '(205)580-1350Schumm' |
| 131 | name_prefix(): string; // 'Miss' |
| 132 | name_suffix(): string; // 'Jr.' |
| 133 | company_name(): string; // 'Cole, Wuckert and Strosin' |
| 134 | company_suffix(): string; // 'Inc' |
| 135 | catch_phrase(): string; // 'Synchronised optimal concept' |
| 136 | phone(): string; // '982-790-2592' |
| 137 | |
| 138 | // numbers |
| 139 | |
| 140 | random(): number; // 0.7171590146608651 (core generator) |
| 141 | coin_flip(): Boolean; // true |
| 142 | |
| 143 | // Date |
| 144 | |
| 145 | unix_time(): number; // 659897901 |
| 146 | moment(): any; // moment.js object see http://momentjs.com/docs/ |
| 147 | century(): string; // 'IV' |
| 148 | am_pm(): string; // 'am' |
no outgoing calls
no test coverage detected
searching dependent graphs…