ente/thirdparty/face-api/dom/resolveInput.ts

8 lines
191 B
TypeScript

import { env } from '../env';
export function resolveInput(arg: string | any) {
if (!env.isNodejs() && typeof arg === 'string') {
return document.getElementById(arg)
}
return arg
}