You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
464 B
14 lines
464 B
3 years ago
|
var buildDistanceInWordsLocale = require('./build_distance_in_words_locale/index.js')
|
||
|
var buildFormatLocale = require('./build_format_locale/index.js')
|
||
|
|
||
|
/**
|
||
|
* @category Locales
|
||
|
* @summary Indonesian locale.
|
||
|
* @author Rahmat Budiharso [@rbudiharso]{@link https://github.com/rbudiharso}
|
||
|
* @author Benget Nata [@bentinata]{@link https://github.com/bentinata}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
distanceInWords: buildDistanceInWordsLocale(),
|
||
|
format: buildFormatLocale()
|
||
|
}
|