Global package configuration.
import {config} from 'jooby-codec';const {hexFormatOptions, host} = config;// set format options for all utils methodshexFormatOptions.separator = '';hexFormatOptions.prefix = '0x';// for some ARMhost.isLittleEndian = false; Copy
import {config} from 'jooby-codec';const {hexFormatOptions, host} = config;// set format options for all utils methodshexFormatOptions.separator = '';hexFormatOptions.prefix = '0x';// for some ARMhost.isLittleEndian = false;
Global package configuration.
Example