emoji-url-shortener
Version:
Own your own url shortener as a service.
13 lines (11 loc) • 307 B
JavaScript
// Code original source : https://github.com/sindresorhus/emoj/blob/master/index.js
;
const got = require('got');
module.exports = str => got('emoji.getdango.com/api/emoji', {
json: true,
query: {
q: str
}
})
.then(res => res.body.results.map(x => x.text))
.catch(err => console.log(err))