@appzung/react-native-code-push
Version:
React Native plugin for the CodePush service
16 lines (15 loc) • 527 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getClientUniqueId = void 0;
var _getConfiguration = require("./internals/getConfiguration.js");
/**
* Gets the client's unique ID set by the module. You may also see `resetClientUniqueId`.
*/
const getClientUniqueId = async () => {
const nativeConfig = await (0, _getConfiguration.getConfiguration)();
return nativeConfig.clientUniqueId;
};
exports.getClientUniqueId = getClientUniqueId;
//# sourceMappingURL=getClientUniqueId.js.map
;