New mobile/ directory with Capacitor project: - Configurable server URL launcher (default: app.pedshub.com) - Android: foreground service + wake lock for background recording (AudioRecordingService preserved from existing TWA) - iOS: background audio mode + microphone permission - App ID: com.pedshub.scribe - Both platforms initialized and synced Existing android/ TWA project untouched — this is a separate project. Build: cd mobile && npx cap open android (or ios)
23 lines
784 B
JavaScript
23 lines
784 B
JavaScript
const { promisify } = require('util')
|
|
const fs = require('fs')
|
|
const optsArg = opts => {
|
|
if (!opts)
|
|
opts = { mode: 0o777, fs }
|
|
else if (typeof opts === 'object')
|
|
opts = { mode: 0o777, fs, ...opts }
|
|
else if (typeof opts === 'number')
|
|
opts = { mode: opts, fs }
|
|
else if (typeof opts === 'string')
|
|
opts = { mode: parseInt(opts, 8), fs }
|
|
else
|
|
throw new TypeError('invalid options argument')
|
|
|
|
opts.mkdir = opts.mkdir || opts.fs.mkdir || fs.mkdir
|
|
opts.mkdirAsync = promisify(opts.mkdir)
|
|
opts.stat = opts.stat || opts.fs.stat || fs.stat
|
|
opts.statAsync = promisify(opts.stat)
|
|
opts.statSync = opts.statSync || opts.fs.statSync || fs.statSync
|
|
opts.mkdirSync = opts.mkdirSync || opts.fs.mkdirSync || fs.mkdirSync
|
|
return opts
|
|
}
|
|
module.exports = optsArg
|