UNPKG

moebius

Version:

Command-Line tool to find and download comics (As well as NodeJS module)

16 lines (14 loc) 349 B
'use strict'; module.exports.getCursorLocation = function getCursorLocation(term) { return new Promise(function getCursorLocation(resolve, reject) { term.getCursorLocation(function onLocationLoaded(err, x, y) { if (err) { return reject(err); } return resolve({ x: x, y: y, }); }); }); };