Chris-1101/atom-uniform

View on GitHub
lib/atom-uniform-enum.js

Summary

Maintainability
A
0 mins
Test Coverage
'use babel';

// Format Pseudo-Enum
const Format = Object.freeze({
  REGULAR    : 0x41,
  BOLD       : 0x1D5D4,
  ITALIC     : 0x1D608,
  BOLDITALIC : 0x1D63C
});

export default Format;