8 lines
127 B
JavaScript
8 lines
127 B
JavaScript
|
"use strict";
|
||
|
|
||
|
let getProcessPlatform = () => process.platform;
|
||
|
|
||
|
module.exports = {
|
||
|
getProcessPlatform: getProcessPlatform
|
||
|
};
|