Skip to content

Instantly share code, notes, and snippets.

@tomaspietravallo
Created August 8, 2020 04:41
Show Gist options
  • Save tomaspietravallo/4a21092756a6f6686780c30f2c0435b4 to your computer and use it in GitHub Desktop.
Save tomaspietravallo/4a21092756a6f6686780c30f2c0435b4 to your computer and use it in GitHub Desktop.
/**
* @param {} x
* @param {*} y
* @param {*} defaultValue
* @returns {Point2DSignal}
*/
function checkAndPack2(x, y, defaultValue){
let values = [x, y];
values.map(x => x || R.val(defaultValue));
return R.pack2(values[0], values[1]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment