forked from olcxjas-softworks/LarpixClient
Add capacitorjs runtime
This commit is contained in:
parent
d0ece489ee
commit
f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions
12
node_modules/native-run/dist/utils/fs.js
generated
vendored
Normal file
12
node_modules/native-run/dist/utils/fs.js
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.isDir = void 0;
|
||||
const utils_fs_1 = require("@ionic/utils-fs");
|
||||
async function isDir(p) {
|
||||
const stats = await (0, utils_fs_1.statSafe)(p);
|
||||
if (stats === null || stats === void 0 ? void 0 : stats.isDirectory()) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
exports.isDir = isDir;
|
||||
Loading…
Add table
Add a link
Reference in a new issue