index.js 533 B

1234567891011121314
  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 Spanish locale.
  6. * @author Juan Angosto [@juanangosto]{@link https://github.com/juanangosto}
  7. * @author Guillermo Grau [@guigrpa]{@link https://github.com/guigrpa}
  8. * @author Fernando Agüero [@fjaguero]{@link https://github.com/fjaguero}
  9. */
  10. module.exports = {
  11. distanceInWords: buildDistanceInWordsLocale(),
  12. format: buildFormatLocale()
  13. }