mirror of https://github.com/lukechilds/docs.git
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.
13 lines
381 B
13 lines
381 B
6 years ago
|
var buildDistanceInWordsLocale = require('./build_distance_in_words_locale/index.js')
|
||
|
var buildFormatLocale = require('./build_format_locale/index.js')
|
||
|
|
||
|
/**
|
||
|
* @category Locales
|
||
|
* @summary Catalan locale.
|
||
|
* @author Guillermo Grau [@guigrpa]{@link https://github.com/guigrpa}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
distanceInWords: buildDistanceInWordsLocale(),
|
||
|
format: buildFormatLocale()
|
||
|
}
|