react-native-inlight
Version:
A framework for building native apps using React
27 lines (21 loc) • 599 B
JavaScript
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
;
var BatchedBridge = require('BatchedBridge');
var Recording = require('NativeModules').Recording;
var TestJSLocaleModule = {
toUpper: function(s) {
Recording.record(s.toUpperCase());
},
toLower: function(s) {
Recording.record(s.toLowerCase());
},
};
BatchedBridge.registerCallableModule('TestJSLocaleModule', TestJSLocaleModule);
module.exports = TestJSLocaleModule;