v0.14.1
- Introducing
$.download(path, filename)
#67
Now you can do:
// Register a route that downloads the /image.png as logo.png
app.get('/', function($){
$.download('./image.png', 'logo.png')
})
$.download(path, filename)
#67Now you can do:
// Register a route that downloads the /image.png as logo.png
app.get('/', function($){
$.download('./image.png', 'logo.png')
})