2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-11-11 07:41:04 +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
};