Skip to content

Instantly share code, notes, and snippets.

View malipetek's full-sized avatar
🏠
Working from home

muhammet ali petek malipetek

🏠
Working from home
View GitHub Profile
function cloneCvsToImg(cvs, img){
cvs.toBlob(function(blob){
img.src = URL.createObjectURL(blob);
}, 'png');
}
@malipetek
malipetek / get_parenthesis_containing_a_word.regexp
Last active February 14, 2018 05:54
Get parenthesis and inside content if it contains a word inside.
/(\(.*some_word_here.*[\)]*)\)/gi