From 6a483495c8b95aa901e32a62fd2a120aa299cf0e Mon Sep 17 00:00:00 2001 From: byronluk Date: Mon, 10 Dec 2018 17:07:50 -0800 Subject: [PATCH] added utfsequence to react-native exports (#20955) Summary: Fixes #20935 Added UTFSequence module to React-Native exports. Put it under // APIs but I'm not certain if it belongs there. Pull Request resolved: https://github.com/facebook/react-native/pull/20955 Differential Revision: D13396903 Pulled By: cpojer fbshipit-source-id: 29cb2ee1431132bd7ca4973fecb0025cd6303a14 --- Libraries/react-native/react-native-implementation.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Libraries/react-native/react-native-implementation.js b/Libraries/react-native/react-native-implementation.js index eef5caafb..98a2f3887 100644 --- a/Libraries/react-native/react-native-implementation.js +++ b/Libraries/react-native/react-native-implementation.js @@ -282,6 +282,9 @@ module.exports = { get unstable_batchedUpdates() { return require('ReactNative').unstable_batchedUpdates; }, + get UTFSequence() { + return require('UTFSequence'); + }, get Vibration() { return require('Vibration'); },