UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

12 lines (11 loc) 277 B
export class RtfMathUtils { static getShortValue(value) { return value & 0x7FFF; } static isShortValue(value) { return value == RtfMathUtils.getShortValue(value); } static getUInt16(value) { return 0xffff & value; } }