Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1x 1x | export const FormatTypes = { ASCII: 'ascii', BINARY: 'binary', APPENDED: 'appended', }; export const TYPED_ARRAY = { Int8Array: 'Int8', Uint8Array: 'UInt8', Int16Array: 'Int16', Uint16Array: 'UInt16', Int32Array: 'Int32', Uint32Array: 'UInt32', Float32Array: 'Float32', Float64Array: 'Float64', }; export default { FormatTypes, }; |