UNPKG

buildjs.core

Version:

Core Shared Functionality for the BuildJS Tool Suite

12 lines (8 loc) 229 B
/* jshint node: true */ 'use strict'; /** ### platform The platform module provides platform aware settings and tools for working with source files. */ exports.lineEnding = (process.platform == 'win32' ? '\r\n' : '\n');