New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@freestar/freestar-plugin-react-native

Package Overview
Dependencies
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@freestar/freestar-plugin-react-native - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

20

FreestarReact.js

@@ -67,2 +67,10 @@ import { requireNativeComponent, ViewPropTypes } from 'react-native';

},
subscribeToInterstitialCallbacks2: (callback: Function) => {
INTERSTITIAL_CALLBACKS.map((event) => {
emitter.removeAllListeners(event);
emitter.addListener(event, (body) => {
callback(event, body.placement, body);
});
});
},
unsubscribeFromInterstitialCallbacks: () => {

@@ -85,2 +93,14 @@ INTERSTITIAL_CALLBACKS.map((event) => {

},
subscribeToRewardCallbacks2: (callback: Function) => {
REWARD_CALLBACKS_NONFINISHED.map((event) => {
emitter.removeAllListeners(event);
emitter.addListener(event, (body) => {
callback(event, body.placement, body);
});
});
emitter.removeAllListeners(REWARD_CALLBACK_FINISHED);
emitter.addListener(REWARD_CALLBACK_FINISHED, (body) => {
callback(REWARD_CALLBACK_FINISHED, body.placement, body.rewardName, body.rewardAmount)
});
},
unsubscribeFromRewardCallbacks: () => {

@@ -87,0 +107,0 @@ REWARD_CALLBACKS_NONFINISHED.map((event) => {

2

package.json

@@ -57,3 +57,3 @@ {

],
"version": "1.2.4",
"version": "1.2.5",
"repository": {

@@ -60,0 +60,0 @@ "type": "git",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc