Skip to content

Commit 4b83539

Browse files
author
Rodrigo Gomez Palacio
authored
Merge pull request OneSignal#1226 from OneSignal/expo-fix
Expo fix
2 parents 4c8028c + e5448c1 commit 4b83539

File tree

2 files changed

+51
-50
lines changed

2 files changed

+51
-50
lines changed

src/helpers.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ export function isValidCallback(handler) {
1313
);
1414
}
1515

16-
export function checkIfInitialized(object) {
17-
const initialized = object != null;
18-
return initialized;
16+
export function isObjectNonNull(object) {
17+
return object != null;
1918
}
2019

2120
/**

0 commit comments

Comments
 (0)