jobs.go

 1package fake
 2
 3import (
 4	"strings"
 5)
 6
 7// Company generates company name
 8func Company() string {
 9	return lookup(lang, "companies", true)
10}
11
12// JobTitle generates job title
13func JobTitle() string {
14	job := lookup(lang, "jobs", true)
15	return strings.Replace(job, "#{N}", jobTitleSuffix(), 1)
16}
17
18func jobTitleSuffix() string {
19	return lookup(lang, "jobs_suffixes", false)
20}
21
22// Industry generates industry name
23func Industry() string {
24	return lookup(lang, "industries", true)
25}