UNPKG

express-pouchdb

Version:

Express submodule with a CouchDB-style REST interface to PouchDB.

13 lines (10 loc) 197 B
"use strict"; var uuid = require('uuid/v4'); module.exports = function generate(limit) { var output = []; var i = -1; while (++i < limit) { output.push(uuid()); } return output; };