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
- Host: GitHub
- URL: https://github.com/patrickjs/angular-uuid-secure
- Owner: PatrickJS
- License: mit
- Created: 2014-09-24T21:32:14.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-27T16:46:20.000Z (over 10 years ago)
- Last Synced: 2024-10-14T06:45:08.179Z (about 1 year ago)
- Language: JavaScript
- Size: 241 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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));
});
```