zombiebox-platform-pc
Version:
ZombieBox platform for desktop browsers.
25 lines (19 loc) • 427 B
JavaScript
/*
* This file is part of the ZombieBox package.
*
* Copyright © 2015-2021, Interfaced
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import Device from './device';
/**
* @return {?Device}
*/
export default function create() {
const isPCPlatform = Device.detect();
if (isPCPlatform) {
return new Device();
}
return null;
}