PolyglotMinShim.js 331 B

12345678910111213
  1. 'use strict';
  2. /**
  3. * An AMD wrapper around polyglot.js for loaders (like DOJO) that don't
  4. * support shims
  5. */
  6. define(['text!/bower_components/polyglot/build/polyglot.min.js'], function (script) {
  7. new Function(script)();
  8. // eslint-disable-next-line no-undef
  9. return Polyglot;
  10. });
  11. //# sourceMappingURL=PolyglotMinShim.js.map