0.0.1 • Published 9 years ago

ascii-fun v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago
var ascii = require('ascii-fun')
var callback = function (error, s) { console.log(s) }

ascii.lowercase(6, callback)
ascii.uppercase(6, callback)
ascii.digits(6, callback)

ascii.generate({
  length: 12,
  range: 3,
  offset: 123,
  callback: callback
})