12 lines
178 B
JavaScript
12 lines
178 B
JavaScript
|
import getSystemInfoSync from './getSystemInfoSync.js'
|
||
|
|
||
|
export function os() {
|
||
|
return getSystemInfoSync().platform;
|
||
|
};
|
||
|
|
||
|
export function sys() {
|
||
|
return getSystemInfoSync();
|
||
|
}
|
||
|
|
||
|
|