The return of TypeError: config._d.getTime is not a function

I’ve submitted this error on moment’s github, but without feedback, maybe i’ll be more lucky on meteor.

TypeError: config._d.getTime is not a function. (In 'config._d.getTime()', 'config._d.getTime' is undefined)

This error is located at:
in FameMore (at connectAlert.js:11)
in ConnectedAlert (at withNavigation.js:17)
in withNavigation(ConnectedAlert) (created by Connect(withNavigation(ConnectedAlert)))
in Connect(withNavigation(ConnectedAlert)) (at FameTop.js:122)
in RCTView (at View.js:44)
in FameTop (at withNavigation.js:17)
in withNavigation(FameTop) (at connectAlert.js:11)
in ConnectedAlert (created by Connect(ConnectedAlert))
in Connect(ConnectedAlert) (at FamePensees.js:41)
in RCTView (at View.js:44)
in FamePensees (created by Connect(FamePensees))
in Connect(FamePensees) (at FameHomeView.js:309)
in RCTView (at View.js:44)
in CellRenderer (at VirtualizedList.js:687)
in RCTScrollContentView (at ScrollView.js:852)
in RCTScrollView (at ScrollView.js:977)
in ScrollView (at VirtualizedList.js:1062)
in VirtualizedList (at FlatList.js:662)
in FlatList (at FameHomeView.js:475)
in RCTView (at View.js:44)
in FameHomeView (at connectAlert.js:11)
in ConnectedAlert (created by Connect(ConnectedAlert))
in Connect(ConnectedAlert) (at ReactMeteorData.js:88)
in ReactMeteorDataComponent (at Home.js:339)
in RCTView (at View.js:44)
in KeyboardAvoidingView (at Home.js:333)
in RCTView (at View.js:44)
in Container (at Home.js:330)
in Home (at connectAlert.js:11)
in ConnectedAlert (at withNavigation.js:17)
in withNavigation(ConnectedAlert) (created by Connect(withNavigation(ConnectedAlert)))
in Connect(withNavigation(ConnectedAlert)) (at SceneView.js:17)
in SceneView (at CardStack.js:466)
in RCTView (at View.js:44)
in AnimatedComponent (at Card.js:12)
in Card (at PointerEventsContainer.js:39)
in Container (at CardStack.js:498)
in RCTView (at View.js:44)
in RCTView (at View.js:44)
in CardStack (at CardStackTransitioner.js:67)
in RCTView (at View.js:44)
in Transitioner (at CardStackTransitioner.js:19)
in CardStackTransitioner (at StackNavigator.js:41)
in Unknown (at createNavigator.js:13)
in Navigator (at createNavigationContainer.js:226)
in NavigationContainer (at AppWithNavigationState.js:66)
in App (created by Connect(App))
in Connect(App) (at app/index.js:242)
in RCTView (at View.js:44)
in AlertProvider (at app/index.js:241)
in Provider (at app/index.js:240)
in AppContainer (at ReactMeteorData.js:88)
in ReactMeteorDataComponent (at withExpoRoot.js:22)
in RootErrorBoundary (at withExpoRoot.js:21)
in ExpoRootComponent (at renderApplication.js:34)
in RCTView (at View.js:44)
in RCTView (at View.js:44)
in AppContainer (at renderApplication.js:33)

Moment
moment.js:238:47
clone
moment.js:3202:26
toISOString
moment.js:3332:22
send
socket.js:15:38
<unknown>
ddp.js:44:25
process
queue.js:21:32
push
queue.js:16:4
method
ddp.js:108:27
_default
Call.js:9:29
componentDidMount
FameMore.js:37:18
commitLifeCycles
ReactNativeRenderer-dev.js:12144:10
commitAllLifeCycles
ReactNativeRenderer-dev.js:13496:8
invokeGuardedCallbackImpl
ReactNativeRenderer-dev.js:92:15
invokeGuardedCallback
ReactNativeRenderer-dev.js:306:36
commitRoot
ReactNativeRenderer-dev.js:13702:8
completeRoot
ReactNativeRenderer-dev.js:15269:13
performWorkOnRoot
ReactNativeRenderer-dev.js:15197:21
performWork
ReactNativeRenderer-dev.js:15090:24
performSyncWork
ReactNativeRenderer-dev.js:15047:14
batchedUpdates$1
ReactNativeRenderer-dev.js:15315:21
batchedUpdates
ReactNativeRenderer-dev.js:2616:31
_receiveRootNodeIDEvent
ReactNativeRenderer-dev.js:2711:17
receiveTouches
ReactNativeRenderer-dev.js:2787:28
callFunction
MessageQueue.js:349:47
<unknown>
MessageQueue.js:106:26 guard
MessageQueue.js:297:10
callFunctionReturnFlushedQueue
MessageQueue.js:105:17

At FameMore: 37, there is a meteor call

Meteor.call('Contacts.isFollowing', { userId: this.props.userId, followerId: this.props.top.userId }, (err, isFollowing) => {

Then it goes inside react-native-meteor and seems to crash inside the socket call, line 15

send(object) {
    if (!this.closing) {
      const message = EJSON.stringify(object);
      this.rawSocket.send(message);
      // Emit a copy of the object, as the listener might mutate it.
      this.emit('message:out', EJSON.parse(message));
    }
  }

EJSON doesn’t have “moment” nor react-native-meteor …
Any idea ? Thank you …