0.0.6 • Published 9 years ago

angular-uuid-secure v0.0.6

Weekly downloads
7
License
MIT
Repository
github
Last release
9 years ago

angular-uuid-secure

Most secure uuid generator in for Angular.js when you include crypto library

angular.module('yourApp', ['ngUUID'])
.run(function($uuid, $log) {
  var id = $uuid();
  $log.info('Generated uuid: '+ id);
  $log.info('is uuid? '+ $uuid.isUUID(id));
});