src/jg/qualities/raw.js
/**
 * Displays the value unchanged.
 * @type {Quality}
 * @example
 * {
 *    initialValue: 'whatever',
 * }
 */
const raw = {
  format: (character, quality, value) => value,
};
export default raw; 
    
  
    
/**
 * Displays the value unchanged.
 * @type {Quality}
 * @example
 * {
 *    initialValue: 'whatever',
 * }
 */
const raw = {
  format: (character, quality, value) => value,
};
export default raw;