react-native/Libraries/AdSupport/AdSupportIOS.js

15 lines
305 B
JavaScript

/**
* Copyright 2004-present Facebook. All Rights Reserved.
*
* @providesModule AdSupportIOS
*/
'use strict';
var AdSupport = require('NativeModules').RCTAdSupport;
module.exports = {
getAdvertisingId: function(onSuccess, onFailure) {
AdSupport.getAdvertisingId(onSuccess, onFailure);
},
};