- Configurable server URL (default: pedshub.com) - Android + iOS platforms initialized - Dark theme matching quiz app (#0f172a) - Status bar and navigation bar color matched - Auto-redirect on subsequent launches - App ID: com.pedshub.quiz, App Name: PedsHub Build: cd mobile && npx cap sync && npx cap open android Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
763 B
JavaScript
29 lines
763 B
JavaScript
const {dirname} = require('path')
|
|
|
|
const findMade = (opts, parent, path = undefined) => {
|
|
// we never want the 'made' return value to be a root directory
|
|
if (path === parent)
|
|
return Promise.resolve()
|
|
|
|
return opts.statAsync(parent).then(
|
|
st => st.isDirectory() ? path : undefined, // will fail later
|
|
er => er.code === 'ENOENT'
|
|
? findMade(opts, dirname(parent), parent)
|
|
: undefined
|
|
)
|
|
}
|
|
|
|
const findMadeSync = (opts, parent, path = undefined) => {
|
|
if (path === parent)
|
|
return undefined
|
|
|
|
try {
|
|
return opts.statSync(parent).isDirectory() ? path : undefined
|
|
} catch (er) {
|
|
return er.code === 'ENOENT'
|
|
? findMadeSync(opts, dirname(parent), parent)
|
|
: undefined
|
|
}
|
|
}
|
|
|
|
module.exports = {findMade, findMadeSync}
|