turbo-native-goproxy
Version:
A Turbo Native module for secure native local storage
13 lines (9 loc) • 608 B
JavaScript
import * as TurboNativeGoproxy from './src/index';
console.log('Testing Turbo Native Goproxy module...');
// Test that the functions are exported
console.log('multiply function:', typeof TurboNativeGoproxy.multiply);
console.log('setSecureItem function:', typeof TurboNativeGoproxy.setSecureItem);
console.log('getSecureItem function:', typeof TurboNativeGoproxy.getSecureItem);
console.log('removeSecureItem function:', typeof TurboNativeGoproxy.removeSecureItem);
console.log('hasSecureItem function:', typeof TurboNativeGoproxy.hasSecureItem);
console.log('✅ Module exports are working correctly!');