blob: 1ed60d219fdac3033d8ce2733f95ac2e2fd3743b [file] [log] [blame]
Austin Schuh7c75e582020-11-14 16:41:18 -08001"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.isLittleEndian = exports.float64 = exports.float32 = exports.int32 = void 0;
4exports.int32 = new Int32Array(2);
5exports.float32 = new Float32Array(exports.int32.buffer);
6exports.float64 = new Float64Array(exports.int32.buffer);
7exports.isLittleEndian = new Uint16Array(new Uint8Array([1, 0]).buffer)[0] === 1;