mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 08:57:53 -05:00
11 lines
301 B
JavaScript
11 lines
301 B
JavaScript
var PGUniqueIdentifier = {
|
|
|
|
generateUUID: function(success, fail) {
|
|
return PhoneGap.exec(success, fail, "PGUniqueIdentifier", "generateUUID", []);
|
|
},
|
|
|
|
getUUID: function(success, fail) {
|
|
return PhoneGap.exec(success, fail, "PGUniqueIdentifier", "getUUID", []);
|
|
}
|
|
|
|
}; |