mirror of
https://github.com/zhigang1992/uber-cities.git
synced 2026-01-12 22:53:16 +08:00
15 lines
328 B
JavaScript
15 lines
328 B
JavaScript
const createFile = require('./createFile')
|
|
|
|
// Please don't commit the changes in this file
|
|
|
|
// Input the correct provider name here with spaces if needed
|
|
const cities = [
|
|
{
|
|
name: 'city-name',
|
|
company: 'your new provider'
|
|
}
|
|
]
|
|
|
|
// The second param here is the name of the file
|
|
createFile(cities, 'your-new-provider')
|