13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
'use strict'
|
|
/**
|
|
* Stub pear-appdrive for Bare standalone — not used outside Pear RTI.
|
|
*/
|
|
class AppDrive {
|
|
constructor() {
|
|
throw new Error('pear-appdrive is not available in Bare standalone builds')
|
|
}
|
|
}
|
|
|
|
module.exports = AppDrive
|
|
module.exports.AppDrive = AppDrive
|