Skip to content

Instantly share code, notes, and snippets.

View LucGranato's full-sized avatar
🇧🇷
1% better every day

Luca Chamecki Granato LucGranato

🇧🇷
1% better every day
View GitHub Profile
@LucGranato
LucGranato / pipe.js
Created September 16, 2019 16:53
Promise pipe
'use string';
module.exports = (...functions) => input => functions.reduce((chain, func) => chain.then(func), Promise.resolve(input));
@LucGranato
LucGranato / camunda.md
Created May 11, 2019 02:50
BPMN Camunda resources
@LucGranato
LucGranato / index.html
Last active November 1, 2023 00:39
Monaco Editor Liquid Language
<div id="container" style="height:100%;"></div>