negativetwelve / react-native-lookback

React Native module for Lookback.io
MIT License
13 stars 7 forks source link

[iOS] Allow userIdentifier to be a string or number #14

Closed negativetwelve closed 8 years ago

negativetwelve commented 8 years ago

This allows either:

Lookback.startRecording({
  userId: 1111,
});

OR 

Lookback.startRecording({
  userId: 'user@gmail.com',
});