An open API service indexing awesome lists of open source software.

https://github.com/patrickjs/angular-uuid-secure

Most secure uuid generator in for Angular.js
https://github.com/patrickjs/angular-uuid-secure

Last synced: 15 days ago
JSON representation

Most secure uuid generator in for Angular.js

Awesome Lists containing this project

README

          

angular-uuid-secure
===================

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

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