UNPKG

nodecopter-leap

Version:

control your drone with the Leap Motion controller

12 lines (7 loc) 214 B
var _ = require('underscore'); module.exports = function(throttle) { throttle = throttle != null ? throttle : 500; return _.throttle(function () { console.log.apply(null, arguments); }, throttle); };