UNPKG

static-fs

Version:

A static filesystem to bundle files and read them using Node.js

11 lines (10 loc) 292 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isWindows = exports.INT_SIZE = void 0; // integers on node are 6B Big-Endian const INT_SIZE = 6; exports.INT_SIZE = INT_SIZE; const isWindows = process.platform === 'win32'; exports.isWindows = isWindows;