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.

functions.web.js 258B

123456789101112131415
  1. // @flow
  2. export * from './functions.any';
  3. export * from './router';
  4. declare var interfaceConfig: Object;
  5. /**
  6. * Returns application name.
  7. *
  8. * @returns {string} The application name.
  9. */
  10. export function getName() {
  11. return interfaceConfig.APP_NAME;
  12. }