Skip to content
View MatheusMFranco's full-sized avatar
🦊
That's all folks!
🦊
That's all folks!

Organizations

@magas-xlr

Block or report MatheusMFranco

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MatheusMFranco/README.md

Outside GitHub

CodePen Docker Hub

Pinned Loading

  1. infinite-scroll infinite-scroll Public

    JavaScript

  2. neoforum neoforum Public

    This API offers endpoints to manage boards, topics, answers, and author profiles, among other features.

    Kotlin 2

  3. All Browsers (iOS and Safari include... All Browsers (iOS and Safari included) Date Friendly
    1
    // Preview: https://codepen.io/matheusfranco/pen/LYKeGLo
    2
    
    
    3
    export const universalDate = (input: string, token = '-', isAmerican = false): Date => {
    4
        const parts = input.split(token);
    5
        const yearSize = 4;
  4. Pure HTML Escape Sanitizer Pure HTML Escape Sanitizer
    1
    //Preview: https://codepen.io/matheusfranco/pen/abgEqMm
    2
    
    
    3
    export const sanitizeHTML = (input = '', remainHtml = false): string => {
    4
    	let cleaned = input.replace(/<(iframe|script|object|embed|style|link)[\s\S]*?>[\s\S]*?<\/\1>/gi, '');
    5
    	return remainHtml ? cleaned : cleaned.replace(/<\/?[^>]+>/gi, '');