Show More
Commit Description:
prevent multiple place login using uuid cookie
Commit Description:
prevent multiple place login using uuid cookie
References:
File last commit:
Show/Diff file:
Action:
node_modules/fontkit/src/tables/feat.js
| 28 lines
| 820 B
| application/javascript
| JavascriptLexer
|
r789 | import r from 'restructure'; | |||
let Setting = new r.Struct({ | ||||
setting: r.uint16, | ||||
nameIndex: r.int16, | ||||
name: t => t.parent.parent.parent.name.records.fontFeatures[t.nameIndex] | ||||
}); | ||||
let FeatureName = new r.Struct({ | ||||
feature: r.uint16, | ||||
nSettings: r.uint16, | ||||
settingTable: new r.Pointer(r.uint32, new r.Array(Setting, 'nSettings'), { type: 'parent' }), | ||||
featureFlags: new r.Bitfield(r.uint8, [ | ||||
null, null, null, null, null, null, | ||||
'hasDefault', 'exclusive' | ||||
]), | ||||
defaultSetting: r.uint8, | ||||
nameIndex: r.int16, | ||||
name: t => t.parent.parent.name.records.fontFeatures[t.nameIndex] | ||||
}); | ||||
export default new r.Struct({ | ||||
version: r.fixed32, | ||||
featureNameCount: r.uint16, | ||||
reserved1: new r.Reserved(r.uint16), | ||||
reserved2: new r.Reserved(r.uint32), | ||||
featureNames: new r.Array(FeatureName, 'featureNameCount') | ||||
}); | ||||