UNPKG

symfony-style-console

Version:

Use the style and utilities of the Symfony Console in Node.js

15 lines (14 loc) 450 B
"use strict"; /** * Export some machine-related information. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.EOL = exports.DIRECTORY_SEPARATOR = void 0; /** * The character that separates segments of a path in the running operating system. */ exports.DIRECTORY_SEPARATOR = require('path').sep; /** * The character(s) that indicate the end of a line in the running operating system. */ exports.EOL = require('os').EOL;