Source: system/platform.ts

/**
 * @author Michael Hasenstein <hasenstein@yahoo.com>
 * @copyright REFINIO GmbH 2018
 * @license CC-BY-NC-SA-2.5; portions MIT License
 * @version 0.0.1
 */

/**
 * @module
 */

/**
 * Platform-specific string constant. The value of this constant will be one of
 * {@link platforms.ts}. Import that enum and use its keys rather than string constants!
 * @static
 * @type {string}
 */
export const platform: string = 'system-dummy';

// Type is "string" instead of the actual constant so that comparisons against "platform" don't
// cause Typescript errors of the "comparison is always false/true" kind.