UNPKG

ember-intl

Version:

Ember toolbox for internationalization.

14 lines (9 loc) 195 B
/* jshint node: true */ 'use strict'; function isSupportedLocale(locale) { if (!/^[a-zA-Z0-9-]+$/.test(locale)) { return false; } return true; } module.exports = isSupportedLocale;