Skip to content

Latest commit

 

History

History
152 lines (89 loc) · 4.47 KB

CustomFeature.md

File metadata and controls

152 lines (89 loc) · 4.47 KB

JScrewItDocs


Interface: CustomFeature

Objects of this type indicate which of the capabilities that JScrewIt can use to minimize the length of its output are available in a particular JavaScript engine.

JScrewIt comes with a set of predefined feature objects exposed as property values of JScrewIt.Feature or JScrewIt.Feature.ALL, where the property name is the feature's name or alias.

Besides these predefined features, it is possible to construct custom features from the union or intersection of other features.

Among the predefined features, there are some special ones called elementary features. Elementary features either cannot be expressed as a union of any number of other features, or they are different from such a union in that they exclude some other feature not excluded by their elementary components. All other features, called composite features, can be constructed as a union of zero or more elementary features. Two of the predefined composite features are particularly important: DEFAULT is the empty feature, indicating that no elementary feature is available at all; AUTO is the union of all elementary features available in the current environment.

Not all features can be available at the same time: some features are necessarily incompatible, meaning that they mutually exclude each other, and thus their union cannot be constructed.

Extends

Properties

canonicalNames

readonly canonicalNames: ElementaryFeatureName[]

An array of all elementary feature names included in this feature object, without aliases and implied features.

Inherited from

Feature.canonicalNames


elementary

readonly elementary: false

A boolean value indicating whether this is an elementary feature object.

Overrides

Feature.elementary


elementaryNames

readonly elementaryNames: ElementaryFeatureName[]

An array of all elementary feature names included in this feature object, without aliases.

Inherited from

Feature.elementaryNames


name?

optional name: string

The primary name of this feature object, useful for identification purpose.

All predefined features have a name; custom features may be optionally assigned a name, too. If a name is assigned, it will be used when the feature is converted into a string.

Inherited from

Feature.name

Methods

includes()

includes(...features): boolean

Determines whether this feature object includes all of the specified features.

Parameters

• ...features: FeatureElementOrCompatibleArray[]

Returns

boolean

true if this feature object includes all of the specified features; otherwise, false. If no arguments are specified, the return value is true.

Inherited from

Feature.includes


restrict()

restrict(environment, engineFeatureObjs?): CustomFeature

Creates a new feature object from this feature by removing elementary features that are not available inside a particular environment.

This method is useful to selectively exclude features that are not available in environments that require strict mode code, or inside web workers.

Parameters

environment: "forced-strict-mode" | "web-worker"

The environment to which this feature should be restricted. Two environments are currently supported.

"forced-strict-mode"
Removes features that are not available in environments that require strict mode code.
"web-worker"
Removes features that are not available inside web workers.

engineFeatureObjs?: readonly PredefinedFeature[]

An array of predefined feature objects, each corresponding to a particular engine in which the restriction should be enacted. If this parameter is omitted, the restriction is enacted in all engines.

Returns

CustomFeature

Inherited from

Feature.restrict