forked from zuriby/Faker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c55738d
commit 279c37e
Showing
4 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
module['exports'] = [ | ||
'سرخ', | ||
'ہرا', | ||
'نیلا', | ||
'پیلا', | ||
'ہلکا ہرا', | ||
'سفہد', | ||
'کالا', | ||
'نارنجی', | ||
'پیکا', | ||
'مہندی', | ||
'آسمانی', | ||
'سنہری', | ||
'چاندنی', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module['exports'] = [ | ||
'کتابیہ', | ||
'فلم', | ||
'گانی', | ||
'کھیل', | ||
'بجلی', | ||
'کمپیوٹر', | ||
'گھر', | ||
'باغ', | ||
'اوزار', | ||
'اشیاء', | ||
'صحر', | ||
'خوبصورتی', | ||
'کھلونہ', | ||
'بچے', | ||
'کپڑے', | ||
'جوتے', | ||
'گاڑیاں', | ||
'کارغانے', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
var commerce = {}; | ||
module['exports'] = commerce; | ||
commerce.color = require('./color'); | ||
commerce.department = require('./department'); | ||
commerce.product_name = require('./product_name'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module['exports'] = { | ||
adjective: ['چھوٹا', 'آرامدہ', 'ہوشیار', 'خوبصورت', 'بیترین'], | ||
material: [ | ||
'لوہا', | ||
'لکڑہ', | ||
'کنکریٹ', | ||
'پلاسٹک', | ||
'رویٰ', | ||
'گرانایٹ', | ||
'ربڑ', | ||
'دھات', | ||
'نرم', | ||
'تازہ', | ||
'جم شدہ', | ||
], | ||
product: [ | ||
'کرسہ', | ||
'گاڑی', | ||
'کمپیوٹر', | ||
'کی بورڈ', | ||
'ماوٰس', | ||
'بایٰک', | ||
'بال', | ||
'دستانے', | ||
'پتلون', | ||
'قمیص', | ||
'میز', | ||
'جوتے', | ||
'ٹوپی', | ||
'تولیہ', | ||
'صابن', | ||
'مچھلی', | ||
'مرغ', | ||
'پنیر', | ||
'سلاد', | ||
'سیخ کباب', | ||
'پاپڑ', | ||
], | ||
}; |