0.0.3 • Published 8 years ago

lodash-uuid v0.0.3

Weekly downloads
1,240
License
ISC
Repository
github
Last release
8 years ago

lodash-uuid

A simple lodash mixin that supports validation and generation of uuids.

 npm install lodash-uuid

This is a slimmed down copy of lodash-mix that only supports functions specific to uuids.

usage

_.uuid

_.uuid()
// generates an RFC 4122 compliant version 4 uuid.

_.isUuid

_.isUuid('262182b1-f92c-42bd-ab39-8faedb47b4dc')
// produces true|false. Validates any version of uuid.

_.isUuid4

_.isUuid('262182b1-f92c-42bd-ab39-8faedb47b4dc')
// produces true|false. Validates an RFC 4122 compliant version 4 uuid.

tests

Tests run in node and the browser. Browserify and tape must be installed globally.

Execute from the command line

npm install -g tape
tape test/**/*.js