2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-09-29 20:59:03 +00:00
nativefier/src/helpers/helpers.js
2016-01-29 14:09:36 +08:00

15 lines
212 B
JavaScript

import os from 'os';
function isOSX() {
return os.platform() === 'darwin';
}
function isWindows() {
return os.platform() === 'windows';
}
export default {
isOSX: isOSX,
isWindows: isWindows
};