2017-11-30 13:27:33 +00:00
|
|
|
'use strict'
|
|
|
|
|
2018-01-10 07:37:05 +00:00
|
|
|
const {EventEmitter} = require('events')
|
|
|
|
const {inAppPurchase, InAppPurchase} = process.atomBinding('in_app_purchase')
|
2017-11-30 13:27:33 +00:00
|
|
|
|
2018-01-10 07:37:05 +00:00
|
|
|
// inAppPurchase is an EventEmitter.
|
|
|
|
Object.setPrototypeOf(InAppPurchase.prototype, EventEmitter.prototype)
|
|
|
|
EventEmitter.call(inAppPurchase)
|
2017-11-30 13:27:33 +00:00
|
|
|
|
2018-01-10 07:37:05 +00:00
|
|
|
module.exports = inAppPurchase
|