in src/windows/VibrationProxy.js [41:52]
function tryDoAction (actionName, success, fail, args, action) {
try {
if (checkReqs(actionName, fail) !== true) {
return;
}
action(args);
success();
} catch (e) {
fail('Error occured while trying to ' + actionName + ': ' + e);
}
}