UNPKG

react-native-kochava-measurement

Version:

A lightweight and easy to integrate SDK, providing first-class integration with Kochava’s installation attribution and analytics platform.

15 lines (14 loc) 371 B
"use strict"; import AsyncStorage from "@amazon-devices/react-native-async-storage__async-storage"; export var rnStorage = { getItem: function (k) { return AsyncStorage.getItem(k); }, setItem: function (k, v) { return AsyncStorage.setItem(k, v); }, removeItem: function (k) { return AsyncStorage.removeItem(k); } }; //# sourceMappingURL=rn.js.map