mirror of
https://github.com/electron/electron.git
synced 2026-02-06 05:05:16 -05:00
15 lines
419 B
JavaScript
15 lines
419 B
JavaScript
'use strict'
|
|
|
|
if (process.platform !== 'darwin') {
|
|
throw new Error('The inAppPurchase module can only be used on macOS')
|
|
}
|
|
|
|
const {EventEmitter} = require('events')
|
|
const {inAppPurchase, InAppPurchase} = process.atomBinding('in_app_purchase')
|
|
|
|
// inAppPurchase is an EventEmitter.
|
|
Object.setPrototypeOf(InAppPurchase.prototype, EventEmitter.prototype)
|
|
EventEmitter.call(inAppPurchase)
|
|
|
|
module.exports = inAppPurchase
|