UNPKG
buildjs.core
Version:
latest (1.0.0)
1.0.0
0.1.2
0.1.1
0.1.0
Core Shared Functionality for the BuildJS Tool Suite
github.com/buildjs/core
buildjs/core
buildjs.core
/
platform.js
12 lines
(8 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/* 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'
);