Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The forEach() method of CSSFontFeatureValuesMap instances executes a provided function once per each key/value pair in this map, in insertion order.
forEach(callbackFn)
forEach(callbackFn, thisArg)callbackFnA function to execute for each entry in the map. The function is called with the following arguments:
valueValue of each iteration.
keyKey of each iteration.
mapThe map being iterated.
thisArg OptionalA value to use as this when executing callbackFn.
None (undefined).
The following example logs the key and value for each entry in the @swash rule. This example is using @swash but also works with other feature value blocks.
@font-feature-values "MonteCarlo" {
@swash {
swishy: 1;
swashy: 2;
}
}// function to be used as callback
function logSwashes(value, key, map) {
console.log(`('${key}') = ${value}`);
}
// get the rules
const myRule = document.styleSheets[0].cssRules[0];
myRule.swash.forEach(logSwashes);
// logs:
// "('swishy') = 1"
// "('swashy') = 2"