index.js 454 B

12345678910111213
  1. var buildDistanceInWordsLocale = require('./build_distance_in_words_locale/index.js')
  2. var buildFormatLocale = require('./build_format_locale/index.js')
  3. /**
  4. * @category Locales
  5. * @summary Japanese locale.
  6. * @author Thomas Eilmsteiner [@DeMuu]{@link https://github.com/DeMuu}
  7. * @author Yamagishi Kazutoshi [@ykzts]{@link https://github.com/ykzts}
  8. */
  9. module.exports = {
  10. distanceInWords: buildDistanceInWordsLocale(),
  11. format: buildFormatLocale()
  12. }