howsmydriving-twitter
Version:
Twitter abstraction for @HowsMyDrivingWA.
17 lines (16 loc) • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetHowsMyDrivingId = exports.uuidv1 = void 0;
// modules
var uuid = require("uuid");
exports.uuidv1 = uuid.v1;
/**
* Wrap this just so we can stub it in tests.
*
* Returns:
* String GUID of form uuid/v1 (see uuid npm package)
**/
function GetHowsMyDrivingId() {
return exports.uuidv1();
}
exports.GetHowsMyDrivingId = GetHowsMyDrivingId;