UNPKG

203 BJavaScriptView Raw
1const I = require('./index.js');
2const i = new I('@blinkmobile/identity-cli');
3
4i.login({username: true})
5 .then(data => console.log('Success: ', data))
6 .catch(error => console.log('Fail: ', error));