@studyportals/sp-hs-misc
Version:
Miscellaneous code used in HouseStark's projects
36 lines (30 loc) • 1.53 kB
JavaScript
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
/**
* Provides the necessary functionality to generate various
* random values.
*/
//# sourceMappingURL=randomization.class.js.map
var Randomization = function () {
function Randomization() {
_classCallCheck(this, Randomization);
}
_createClass(Randomization, [{
key: 'guid',
/**
* Generates a new GUID.
*/
value: function guid() {
//
// Thanks!
// https://stackoverflow.com/a/2117523/3398810
//
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = Math.random() * 16 | 0,
v = c === 'x' ? r : r & 0x3 | 0x8;
return v.toString(16);
});
}
}]);
return Randomization;
}();