Files
yaak/src-tauri/plugins/yaak-importer/out/index.js
2023-11-09 19:40:31 -08:00

14 lines
275 B
JavaScript

function u(r) {
let e;
try {
e = JSON.parse(r);
} catch {
return;
}
if (t(e) && e.yaakSchema === 1) return e.resources;
}
function t(r) {
return Object.prototype.toString.call(r) === '[object Object]';
}
export { t as isJSObject, u as pluginHookImport };