Home Reference Source Repository

src/features/FeatureId.js

/**
 * An enumeration of feature ids.
 *
 * @type {Object}
 * @property {String} CANVAS - The identifier of the Canvas feature.
 * @property {String} FILE - The identifier of the File feature.
 * @property {String} TYPED_ARRAY - The identifier of the Typed Array feature.
 * @property {String} WEBGL - The identifier of the WebGL feature.
 * @property {String} WORKER - The identifier of the Web Worker feature.
 */

export const FeatureId = {

	CANVAS: "feature.canvas",
	FILE: "feature.file",
	TYPED_ARRAY: "feature.typed-array",
	WEBGL: "feature.webgl",
	WORKER: "feature.worker"

};